/* General Reset for Consistency */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Ensures consistent layout across all elements */
}

form {
    justify-items: center;
}

/* Full-screen container */
.full-screen {
    height: 100vh; /* Ensure it fills the entire viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Login box container */
.login-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: max(10rem, 30%);
    padding: 2rem;
    background-color: var(--color-background); /* Add background if necessary */
    border-radius: 1rem; /* Optional: Rounded corners for the box */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Optional: Shadow effect */
}

/* Title styling */
.login-box h2 {
    width: 100%;
    font-size: 2rem;
    text-align: center;
    margin: 0;
}

/* Reset form default styles */
form {
    width: 100%; /* Ensure form stretches to fill the available space */
}

/* Input field styles */
.login-box input {
    box-sizing: border-box;
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 16px;
    line-height: 1.5;
    border: 1px solid var(--color-border, #ccc); /* Default border color */
    font-family: Arial, sans-serif;
}

/* Button styling */
.login-box__login-button {
    font-size: 1rem;
    cursor: pointer;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    border: 1px solid var(--color-border, #ccc);
    background-color: var(--color-background, #fff);
    color: #333; /* Text color */
    transition: transform 0.3s ease; /* Smooth hover transition */
    text-align: center;
}

.login-box__login-button:hover {
    transform: scale(1.05); /* Button hover effect */
}

/* Optional: Focus styles for form inputs */
input:focus, button:focus {
    outline: 2px solid black; /* Blue outline on focus */
}
