@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

html, body {
  margin: 0;
  padding: 0;
}

.theme-body {
  background: linear-gradient(to right, #344966, #b4cded, #f0f4ef);  
  color: #333;
  font-family: 'Open Sans', sans-serif;
  height: 100%;
  margin: 0;
  padding: 0;
}

.theme-title {
  font-size: 50px;
  margin: 0;
}

.theme-heading {
  font-size: 16px;
  margin-bottom: 10px;
  margin-top: 36px;
}

.theme-panel {
  background-color: #fff;
  padding: 10px;
  border-radius: 2px;
  margin: 0; 
  width: 100%; 
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.theme-btn-provider .dex-btn-text {
  font-weight: normal !important;
}

.theme-btn-provider {
  background-color: #fff;
  color: #333;
  min-width: 300px;
  height: 60px;
  position: relative;
}

.dex-btn-icon {
  position: absolute;
  left: 10px; 
  top: 50%;
  transform: translateY(-50%);
  margin-left: 10px; 
}

.theme-btn-provider:hover {
  color: #999;
}

.theme-btn--primary {
  background-color: #333;
  border: none;
  color: #fff;
  min-width: 200px;
  padding: 6px 12px;
}

.theme-btn--primary:hover {
  background-color: #666;
  color: #fff;
}

.theme-btn--success {
  background-color: #2FC98E;
  color: #fff;
  width: 250px;
}

.theme-btn--success:hover {
  background-color: #49E3A8;
}

.theme-form-row {
  display: block;
  margin: 20px auto;
}

.theme-form-input {
  border-radius: 4px;
  border: 1px solid #CCC;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  color: #666;
  display: block;
  font-size: 14px;
  height: 36px;
  line-height: 1.42857143;
  margin: auto;
  padding: 6px 12px;
  width: 250px;
}

.theme-form-input:focus,
.theme-form-input:active {
  border-color: #66AFE9;
  outline: none;
}

.theme-form-label {
  font-size: 12px;
  font-weight: 600;
  margin: 4px auto;
  position: relative;
  text-align: left;
  width: 250px;
}

.theme-link-back {
  margin-top: 4px;
}

@media only screen and (max-width: 768px) {
  .theme-body {
    background: #fff; 
  }

  .theme-panel {
    height: auto;
    margin-top: 20px; 
  }

  .theme-btn-provider {
    margin-right: 30px;
    margin-left: 30px; 
  }

  .dex-btn-icon {
    left: 20px;
  }
}
