/* Import Google Fonts for modern typography */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');

/* Apply the imported font to the body */
body {
    font-family: 'Roboto', sans-serif; /* Modern font */
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    height: 100vh; /* Full height of the viewport */
    display: flex;
    justify-content: center; /* Horizontally center */
    align-items: center; /* Vertically center */
}

/* The container now takes up full screen width */
.container {
    width: 100%;
    max-width: 500px; /* Max width of the card */
}

.card {
    background: white;
    border-radius: 15px; /* Smooth, rounded corners */
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1); /* Deeper shadow for a modern look */
    padding: 40px; /* More space inside the card */
    text-align: left;
}

/* Button styling */
button {
    background-color: #7042f4cf; /* Blue color */
    color: white;
    border: none;
    cursor: pointer;
    padding: 12px;
    margin-top: 15px;
    border-radius: 5px;
    font-size: 16px;
    width: 100%; /* Full width of the button */
    transition: background-color 0.3s ease; /* Smooth transition */
}

/* Styling for input fields and dropdown */
input, select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px; /* More space between fields */
    border: 1px solid #ccc;
    border-radius: 8px; /* Rounded corners for input fields */
    font-size: 16px;
    background-color: #fafafa; /* Light background for input */
    box-sizing: border-box; /* Ensure padding doesn't overflow */
    transition: border-color 0.3s ease; /* Smooth transition for border color */
}

/* Focus effect for input fields */
input:focus, select:focus {
    border-color: #4285F4; /* Change border to blue on focus */
    outline: none; /* Remove default outline */
}

/* Header text styling */
h3 {
    font-size: 24px;
    color: #333;
    font-weight: 500;
    margin-bottom: 30px; /* Space between header and form */
    text-align: center;
}

/* Optional: Styling for the response div */
#response {
    margin-top: 15px;
    font-size: 14px;
    color: #555;
}
/* Eye icon toggle */
#toggle-password {
    font-size: 18px;
    color: #888;
}

/* Align remember and forgot links */
form .d-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#google-btn:hover {
    background-color: #333;
}

/* Divider line */
hr {
    margin: 20px 0;
    border-top: 1px solid #ccc;
}
