body {
    background-color: #66d7ff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: sans-serif;
    margin: 0;
}

.login-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    width: 850px;
    height: 450px;
    overflow: hidden;
}

.logo-section {
    background-color: #00bfff;
    color: #fff;  
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
}

.logo-section img {
    width: 200px;
    height: 200px;
    margin-bottom: 15px;
}

.logo-section h1 {
    font-size: 25px;
    font-weight: 600;
}

.logo-section h2 {
    font-size: 30px;
    font-weight: 600;
    padding-bottom: 5px;
    border-bottom: 5px solid white;
}

.form-section {
    padding: 40px;
    width: 50%;

}

.form-section p {
    margin: 0px;
    font-size: 14px;
    color: #000000;
}

.form-section .intro {
    font-size: 30px;
    font-weight: bold;
    color: #000000;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 15px;
    font-weight: bold;
}

.form-control {
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 14px;
}

button {
    background-color: #00bfff;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 15px;
    width: 50%;
    margin: 20px auto 0 auto;
    display: block;
    font-weight: bold;
}

button:hover {
    background-color: #009ad6;
}

.footer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #009ad6;
    color: white;
    text-align: center;
    padding: 20px;
}