/*
Theme Name: theartistacademy
Theme URI: https://theartistacademy.com/
Template: astra
Author: theartistacademy
Author URI: https://theartistacademy.com/about/?utm_source=theme_preview&utm_medium=author_link&utm_campaign=astra_theme
Description: theartistacademy
Tags: custom-menu,custom-logo,entertainment,one-column,two-columns,left-sidebar,e-commerce,right-sidebar,custom-colors,editor-style,featured-images,full-width-template,microformats,post-formats,rtl-language-support,theme-options,threaded-comments,translation-ready,blog
Version: 4.11.3.1769191940
Updated: 2026-01-23 18:12:20

*/

.student-auth-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.student-auth-btn {
  display: inline-block;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  font-family: 'Uncut Sans Variable', sans-serif;
}

.student-auth-dashboard {
  background: #1a1a1a;
  color: #fff !important;
  border: 1px solid #1a1a1a;
}

.student-auth-logout {
  background: transparent;
  color: #1a1a1a !important;
  border: 1px solid #1a1a1a;
}

.student-auth-login {
  background: #1a1a1a;
  color: #fff !important;
  border: 1px solid #1a1a1a;
}

.student-auth-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.student-auth-dashboard:hover,
.student-auth-login:hover {
  background: #5c8dba;
  border-color: #5c8dba;
  color: #fff !important;
}

.student-auth-logout:hover {
  background: #1a1a1a;
  color: #fff !important;
}

.auth-wrapper {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 20px;
  font-family: 'UncutSans-Variable', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.auth-wrapper .auth-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  animation: slideUp 0.5s ease-out;
}

.auth-header-img {
  width: 75%;
  margin: auto;
  display: block;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-wrapper .auth-header {
  background: linear-gradient(135deg, #f1f8fd 0%, #f1f8fd 100%);
  padding: 40px 30px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.auth-wrapper .auth-header::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #f1f8fd, #4fc3f7, #f1f8fd);
}

.auth-wrapper .tab-container {
  display: flex;
  background: linear-gradient(0deg, #fff, #f1f8fd);
  padding: 8px;
  margin: 0;
  gap: 8px;
}

.auth-wrapper .tab-btn {
  flex: 1;
  padding: 14px 20px;
  background: transparent;
  border: none;
  border-radius: 12px;
  font-family: 'UncutSans-Variable', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #666;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.auth-wrapper .tab-btn:hover:not(.active) {
  color: #333;
}

.auth-wrapper .tab-btn.active {
  background: #fff;
  color: #1a1a1a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.auth-wrapper .form-container {
  padding: 35px 30px 40px;
}

.auth-wrapper .auth-form {
  display: none;
  opacity: 0;
}

.auth-wrapper .auth-form.active {
  display: block;
  animation: fadeInForm 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInForm {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-wrapper .form-group {
  margin-bottom: 20px;
}

.auth-wrapper .form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.auth-wrapper .input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border: 2px solid transparent;
  border-radius: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.auth-wrapper .input-wrapper:focus-within {
  background: #fff;
  border-color: #4fc3f7;
  box-shadow: 0 0 0 4px rgba(79, 195, 247, 0.1);
  outline: none;
}

.auth-wrapper .input-icon {
  position: absolute;
  left: 16px;
  color: #999;
  font-size: 16px;
  transition: color 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.auth-wrapper .input-wrapper:focus-within .input-icon {
  color: #4fc3f7;
}

.auth-wrapper .form-input {
  width: 100%;
  padding: 14px 16px 14px 45px;
  border: none;
  background: transparent;
  font-family: 'UncutSans-Variable', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  outline: none;
}

.auth-wrapper .form-input::placeholder {
  color: #999;
}

.auth-wrapper .password-toggle {
  position: absolute;
  right: 16px;
  color: #999;
  cursor: pointer;
  font-size: 16px;
  transition: color 0.3s ease;
  padding: 8px;
  z-index: 2;
}

.auth-wrapper .password-toggle:hover {
  color: #4fc3f7;
}

.auth-wrapper .name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.auth-wrapper .forgot-password {
  text-align: right;
  margin: -8px 0 20px;
}

.auth-wrapper .forgot-password a {
  color: #4fc3f7;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.auth-wrapper .forgot-password a:hover {
  color: #1a1a1a;
}

.auth-wrapper .checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0;
}

.auth-wrapper .custom-checkbox {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.auth-wrapper .custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.auth-wrapper .checkbox-mark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background: #f8f9fa;
  border: 2px solid #ddd;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.auth-wrapper .custom-checkbox input:checked ~ .checkbox-mark {
  background: #1a1a1a;
  border-color: #1a1a1a;
}

.auth-wrapper .checkbox-mark::after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.auth-wrapper .custom-checkbox input:checked ~ .checkbox-mark::after {
  display: block;
}

.auth-wrapper .checkbox-label {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

.auth-wrapper .checkbox-label a {
  color: #4fc3f7;
  text-decoration: none;
  font-weight: 600;
}

.auth-wrapper .checkbox-label a:hover {
  text-decoration: underline;
}

.auth-wrapper .submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: 'UncutSans-Variable', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.auth-wrapper .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.auth-wrapper .submit-btn:active {
  transform: translateY(0);
}

.auth-wrapper .submit-btn.loading {
  opacity: 0.7;
  pointer-events: none;
}

.auth-wrapper .divider {
  display: flex;
  align-items: center;
  margin: 30px 0;
  color: #999;
  font-size: 13px;
}

.auth-wrapper .divider::before,
.auth-wrapper .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e0e0e0;
}

.auth-wrapper .divider::before {
  margin-right: 12px;
}

.auth-wrapper .divider::after {
  margin-left: 12px;
}

.auth-wrapper .social-login {
  display: grid;
  gap: 12px;
}

.artist-auth-message {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}

.artist-auth-message.success {
  background: #ecfdf3;
  color: #027a48;
  border: 1px solid #abefc6;
}

.artist-auth-message.error {
  background: #fef3f2;
  color: #b42318;
  border: 1px solid #fecdca;
}

.artist-auth-logged-in-box {
  max-width: 480px;
  margin: 20px auto;
  padding: 24px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.artist-auth-logged-in-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.artist-auth-primary-btn,
.artist-auth-secondary-btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
}

.artist-auth-primary-btn {
  background: #1a1a1a;
  color: #fff !important;
}

.artist-auth-secondary-btn {
  border: 1px solid #1a1a1a;
  color: #1a1a1a !important;
}

@media (max-width: 768px) {
  .student-auth-wrapper {
    gap: 8px;
  }

  .student-auth-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .auth-wrapper .auth-card {
    border-radius: 16px;
  }

  .auth-wrapper .form-container {
    padding: 25px 20px 30px;
  }

  .auth-wrapper .name-row {
    grid-template-columns: 1fr;
  }
}