* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #678e9d;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
}
.login-container {
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    position: relative;
}

.home-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #555;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-btn i {
    margin-right: 5px; /* Space between icon and text */
}

.home-btn:hover {
    background-color: #777;
}
.login-container h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.login-container p {
    margin-bottom: 20px;
    color: #666;
}

.login-container form {
    display: flex;
    flex-direction: column;
}

.login-container input {
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.options {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.options a {
    color: #1a73e8;
    text-decoration: none;
}

.buttons {
    display: flex;
    align-items: center;
    justify-items: center;
    /* justify-content: space-between; */
}

.buttons .register-btn,
.buttons .login-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
}

.buttons .register-btn {
    background-color: #ccc;
    color: #333;
}

.buttons .login-btn {
    background-color: #01415B;
    color: #fff;
}

.agent-login {
    margin-top: 20px;
}

.agent-login p {
    font-size: 0.9rem;
}

.agent-login a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: bold;
}
.error {
    color: red;
    font-size: 12px;
    margin-top: -5px;
    display: none;
    margin-bottom: 5px;
}

.input-error {
    border: 2px solid red;
}

@media (max-width: 600px) {
    .login-container {
        padding: 20px;
    }

    .buttons .register-btn,
    .buttons .login-btn {
        width: 100%;
        margin-bottom: 10px;
    }
}
