* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.form-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}
.logo-container{
    max-height: 350px;
    overflow: hidden;
}
.logo {
    width: 200px;
    height: auto;
    overflow-y: hidden;
    margin-top: -70px;
    margin-bottom: -50px;
}

h2 {
    color: #333;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    font-size: 14px;
    color: #555;
}

.input-group input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #53b8f8;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #4394c7;
}

p {
    margin-top: 20px;
    font-size: 14px;
}

a {
    color: #53b8f8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}



@media (max-width: 600px) {
    .form-container {
        padding: 20px;
        width: 90%;
    }

    .logo {
        width: 250px;
        margin-top: -80px;
        margin-bottom: -70px;
    }

    h2 {
        font-size: 18px;
    }

    .input-group input {
        font-size: 14px;
    }

    button {
        font-size: 14px;
    }
}


select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    font-size: 16px;
    color: #333;
    appearance: none; 

    -webkit-appearance: none; 

    -moz-appearance: none; 

    cursor: pointer;
    transition: border-color 0.3s ease-in-out;
}



select::-ms-expand {
    display: none; 

}

.select-container {
    position: relative;
}

.select-container::after {
    content: "▼"; 

    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 12px;
    color: #333;
    pointer-events: none;
}



select:focus {
    border-color: #53b8f8;
    outline: none;
}



@media (max-width: 600px) {
    select {
        font-size: 14px;
    }
}


.modal {
    display: none; 

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 

    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}



.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    width: 80%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}



.modal h2 {
    color: #53b8f8;
    margin-bottom: 20px;
}



.modal p {
    font-size: 16px;
    margin-bottom: 20px;
}



.modal-link {
    color: #53b8f8;
    text-decoration: none;
    font-size: 16px;
}

.modal-link:hover {
    text-decoration: underline;
}



.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}


