/* logincss.css */
body {
    font-family: Arial, sans-serif;
    background-color: #474747; /* Background color for the whole page */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background-color: #666; /* Container background */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: 400px;
    color: white;
}

.login-container h2 {
    color: #fdb913; /* Orange color for "Sign In" */
    margin-bottom: 5px;
}

.login-container hr {
    border: none;
    border-top: 1px solid #aaa; /* Line under "Sign In" */
    margin-bottom: 20px;
}

.login-container p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.input-container {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 5px;
    margin-bottom: 15px;
    height: 45px; /* Adjust the height to match the textbox */
}

.input-container i {
    background-color: #fdb913; /* Yellow background */
    color: black; /* Icon color set to black */
    padding: 0 10px; /* Horizontal padding for icon */
    height: 100%; /* Match the icon's height to the container */
    display: flex;
    justify-content: center;
    align-items: center;
}

.input-field {
    border: none;
    outline: none;
    flex: 1;
    padding: 0 10px;
    font-size: 1em;
}

.login-btn {
    background-color: #fdb913; /* Button color */
    color: #333;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

.login-btn:hover {
    background-color: #eaa305;
}

.login-container .footer {
    margin-top: 20px;
    text-align: center;
    color: #ddd;
}

.login-container .footer a {
    color: #fdb913;
    text-decoration: none;
    font-weight: bold;
}

.login-container .footer a:hover {
    text-decoration: underline;
}
