*{
    font-family: "Nunito", sans-serif;
}

body {
     background: linear-gradient(135deg, #f7f7f7 0%, #000000 100%);
     min-height: 100vh;
 }


 .signin-container {
     min-height: 100vh;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     padding: 20px;
 }

 .signin-box {
     width: 100%;
     max-width: 420px;
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(10px);
     border-radius: 20px;
     padding: 40px 30px;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.2);
 }

 .brand-title {
     font-weight: 700;
     font-size: 2.2rem;
     margin-bottom: 10px;
     background: linear-gradient(135deg, #000000 0%, #000000 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .subtitle {
     color: #666;
     margin-bottom: 30px;
     font-weight: 400;
 }

 .form-control {
     border-radius: 12px;
     padding: 16px 20px;
     border: 2px solid #e1e5e9;
     background: rgba(255, 255, 255, 0.9);
     transition: all 0.3s ease;
     font-size: 16px;
 }

 .form-control:focus {
     border-color: #667eea;
     box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
     transform: translateY(-2px);
 }

 .btn-primary {
     background: linear-gradient(135deg, #000000 0%, #000000 100%);
     border: none;
     border-radius: 12px;
     padding: 16px;
     font-weight: 600;
     font-size: 16px;
     transition: all 0.3s ease;
 }

 .btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
 }

 .links {
     margin-top: 25px;
     font-size: 0.9rem;
 }

 .links a {
     text-decoration: none;
     font-weight: 500;
     transition: color 0.3s ease;
 }

 .links a:hover {
     color: #764ba2;
 }


 a {
    text-decoration: none;
    color: blue;
    font-size: 12px;
    align-items: center;
 }

 @media (max-width: 480px) {
     .signin-box {
         margin: 10px;
         padding: 30px 20px;
     }
 }