
body {
    background-color: white;
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

form {
    margin-top: 80px;
    padding: 32px;
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    gap: 14px;
    


}

label {
    color: #0f0f0f;
    font-weight: 600;
    font-size: 14px;
}


input {
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #dddddd;
    font-size: 15px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus {
    outline: none;
    border-color: #c62828;
    box-shadow: 0 0 0 2px rgba(198, 40, 40, 0.2);
}


button {
    margin-top: 10px;
    padding: 14px;
    background-color: #c62828;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

button:hover {
    background-color: #a81f1f;
    transform: translateY(-1px);
}

button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    form {
        margin-top: 60px;
        padding: 24px;
    }
}

@media (max-width: 480px) {
    form {
        margin-top: 40px;
        padding: 20px;
        border-radius: 10px;
        box-shadow: none;

    }

    input,
    button {
        font-size: 14px;
        padding: 12px;
    }
}
