body {

    background-color: rgb(88, 202, 255);
    

}
.container {
    display: flex;
    justify-content: center;  
    align-items: center;   
    margin-top: 15%;      
}

.form-container {
    flex: 1;
    max-width: 400px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

form {
    display: flex;
    flex-direction: column;
}

h2 {
    margin-bottom: 20px;
    text-align: center;
}

input[type="text"],
input[type="password"] {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 40px;
}

.mya {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

button {
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}


@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 20px;
    }

    .image {
        display: none;
    }

    .form-container {
        width: 100%;
    }
}

a{
    text-decoration: none;
    color: #007bff;
}