*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.login-switch a:hover{
    color: #07d8eb;
    text-decoration: underline;
}
.form-card{
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 2rem;
    padding: 2rem;
    background: rgba(255,255,255,0.95);
    box-shadow: 0px 25px 50px -15px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.05);

}
.inputs input:focus {
    border-color: #2adbeb;
    background: white;
    box-shadow: 0 0 0 4px rgba(12, 205, 223, 0.15);
}
.message-area.success{
    color: #16af3a;
}
@keyframes slide{
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}
.form button{
    border: none;
    border-radius: 2rem;
    padding: 1rem 1.5rem;
    color: white;
    cursor: pointer;
    background: linear-gradient(315deg, #000000 0%, #044c95 43%, #ffffff 100%);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.25s ease;
    box-shadow: 0px 10px 20px rgba(22, 38, 212, 0.4);
}
.inputs{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.message-area{
    margin-top: 2rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    min-height: 2rem;
}
body::before{
    content: '';
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    position: absolute;
    inset: 0;
    pointer-events: none;
    animation: slide 0.5s ease-out;
}
.login-switch a{
    color: #1451d4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s ease;
}
.form{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.login-switch{
    text-align: center;
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 500;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 1rem;
}
.form-card:hover{
    box-shadow: 0px 30px 55px -20px rgba(0,0,0,0.5);
}
.main{
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}
.inputs input::placeholder {
    color: #8390a1;
    font-weight: 400;
    transition: opacity 0.2s;
}
.inputs input:focus::placeholder {
    opacity: 0.5;
}
.form-card h1{
    text-align: center;
    margin-bottom: 2rem;
    color: black;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -0.5px;

}
.form-container{
    gap: 2rem;
}
.message-area.error{
    color: #cc210e;
}
body{
    margin: 0;
    padding: 1.5rem;
    font-family: Arial, sans-serif;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(315deg, #ffffff 0%, #000000 43%, #fdffff 100%);
}
.inputs input{
    width: 100%;
    padding: 1rem;
    border: 1.5px solid #b9c6d8;
    border-radius: 1rem;
    outline: none;
    transition: all 0.2s ease;
    font-size: 1rem;
    font-weight: 500;

}

@media (max-width: 480px) {
    .form-card {
        padding: 1.5rem;
    }
    
    .form-card h1 {
        font-size: 1.5rem;
    }
    
    .inputs input {
        padding: 0.75rem 1rem;
    }
}
