body {
    background-image: url('background-login-af97571a228f4572a982e6f35b37b87f.png');
    background-size: cover;        
    background-repeat: no-repeat;  
    background-position: center;    
    height: 100vh;                  
    margin: 0;                      
    padding: 0;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login_message {
    color: #D28036;
}

.login-wrapper {
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    max-width: 400px;
}

.logo {
    width: 320px;
    display: block;
    margin: 0 auto 10px;
}

.login-box h2 {
    font-size: 42px;
    color: #D28036;
    font-style: italic;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 40px;
}

form input {
    width: calc(100% - 30px);
    padding: 14px;
    margin-bottom: 12px; 
    border: none;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.3);
}

form button, .login-btn {
    background-color: #D28036;
    color: white;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 25px;
    padding: 14px 0;
    width: 150px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.3);
    margin-top: 20px;
}

.login-btn{
    width: calc(100% - 30%) !important;
}

form button:hover, .login-btn:hover {
    background-color: white;
    color: #D28036;
}

form label {
    display: block;
    text-align: left;
    font-size: 14px;
    color: white;
    margin-bottom: 6px;
    margin-top: 12px;
    margin-left: 12px;
    font-weight: 500;
}

.succ-text {
    display: block;
    text-align: left;
    font-size: 14px;
    color: #fff;
    margin-bottom: 6px;
    margin-top: 12px;
    margin-left: 12px;
    font-weight: 500;
}

.error {
    margin-top: 20px;
    color: #f76060;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.form-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 12px;
    font-size: 14px;
  }
  
  .form-links a {
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .form-links a:hover {
    color: #D28036;
  }

  .back-link {
    display: inline-block;
    margin-top: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: #D28036;
}
