* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body {
    background-color: #001427;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
}
.login-container {
    background-color: #012a4a;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}
.login-container h2 {
    margin-bottom: 20px;
    font-size: 2em;
    font-weight: 600;
}
.input-group {
    margin-bottom: 20px;
    position: relative;
}
.input-group input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #03a9f4;
    border-radius: 30px;
    background: transparent;
    color: white;
}
.input-group input::placeholder {
    color: #b3b3b3;
}
.remember-me {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.9em;
}
.login-btn {
    background-color: #03a9f4;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    width: 100%;
}
.social-login {
    margin-top: 20px;
}
.social-login a {
    text-decoration: none;
    margin: 0 10px;
    color: #03a9f4;
    font-size: 1.5em;
}
.signup-link {
    margin-top: 10px;
    font-size: 0.9em;
    color: #03a9f4;
}
.signup-link a {
    color: #03a9f4;
    text-decoration: none;
}
.home-link {
    margin-top: 20px;
}
.back-home-btn {
    background-color: #03a9f4;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
}

@media (max-width: 768px) {
    .login-container {
        width: 90%;
    }
}

   /* Custom Select Box Styling */
        .custom-select {
            position: relative;
            display: inline-block;
            width: 80%;
            margin-top: 12px;
            border-radius: 15px;
            box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
        }

        .custom-select select {
            display: none; /* Hide default select element */
        }

        .select-selected {
            background-color: #f1f1f1;
            padding: 12px;
            border: 1px solid #ccc;
            cursor: pointer;
            font-size: 16px;
            color: #555;
        }

        .select-items {
            position: absolute;
            background-color: #fff;
            border: 1px solid #ddd;
            width: 100%;
            max-height: 200px;
            overflow-y: auto;
            z-index: 99;
        }

        .select-items div {
            padding: 12px;
            cursor: pointer;
        }

        .select-items div:hover {
            background-color: #f1f1f1;
        }

        /* Error Message Styling */
        .error-message {
            color: #ff0000;
            font-size: 14px;
            margin-top: 5px;
        }