.btn.d-flex.align-items-center {
    display: flex !important;      
    flex-direction: row !important; 
    align-items: center !important; 
    white-space: nowrap;            
}

.btn.d-flex.align-items-center i {
    display: inline-block !important;
    margin-right: 8px;
    vertical-align: middle;
}

.signup-header{
    display: flex;               
    flex-direction: column;      
    align-items: center;         
    justify-content: center;     
    text-align: center;                
    padding: 1rem 10rem;                   
    background: rgba(255, 255, 255, 0.014); 
    backdrop-filter: blur(10px); 
    border-radius: 12px;         
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); 
    transform: none;
    margin: 0 auto;
    position: relative;
    top: 50px;
}

.login-header {
    display: flex;               
    flex-direction: column;      
    align-items: center;         
    justify-content: center;     
    text-align: center;                
    padding: 1rem 10rem;                   
    background: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(10px); 
    border-radius: 12px;         
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); 
    transform: translateY(-60px);         
}

.signup-header h1,
.login-header h1{
    font-weight: 650;
    font-size: 2.5rem;
    color:aqua; 
}

.login-page-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  transform: translateY(8px); 
}

.card {
    background: rgba(255, 255, 255, 0.014);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    color: #fff;
    backdrop-filter: blur(10px); 
}

.card input,
.card label {
    color: #fff;
}

.card input {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
}

.vault-background {
    position: fixed;
    top: 50%;                
    left: 50%;               
    width: 250px;            
    height: 600px;            
    background: url("/static/vault.png") no-repeat center center;
    background-size: contain; 
    transform: translate(-50%, -50%); 
    z-index: -1;
}

.toggle-password {
    background: none;
    border: none;
    color: #fff; /* white for glass theme */
    cursor: pointer;
    font-size: 0.8rem;
    z-index: 10;
}

.toggle-password:focus {
    outline: none;
}

@media (max-width:768px){
    .login-page-wrapper{
        max-width: 95%;
        width: 95%;
        margin: 0 auto;
    }

    .login-header{
        padding: 1rem 5rem; 
    }

    .signup-header{
        padding: 1rem 5rem; 
        margin-bottom: 40px;
    }

    .vault-background{
        width: 300px;
    }
}