@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
        
body {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    margin: 0;
    background-color: #030141;
}

.logo-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 10px;
}

.login_container {
    display: flex;
    flex-direction: column;
    gap: 2%;
    width: 100%;
    max-width: 400px;
    padding: 20px;
    border: 3px solid #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #030141;
    height: 75vh;
}

h4 {
    text-align: center;
    font-size: 20px;
    color: #ffffff;
}

label {
    font-weight: 500;
    margin-bottom: 5px;
    display: inline-block;
    color: #ffffff;
}

input[type="text"],
input[type="tel"],
select {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px 0;
    border: 1.5px solid #ffffff;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
    color: #ffffff;
    background-color: #030141;
}
select option {
    background: #ffffff;
    color:#030141;
}
input:focus,
select:focus {
    outline: none;
    border-color: #242080;
}
.button-container {
    display: flex;
    justify-content: center;
    width: 100%;
}
button { 
    padding: 10px 40px 10px 40px;
    background-color: #ffffff;
    color: #030141;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 0px;
}

button:hover {
    background-color: #61608c;
}

@media (max-width: 768px) {
    .login_container {
        width: 90%;
        margin: 30px;
    }
}