body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    display: flex;
    max-width: 1000px;
    width: 100%;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex-direction: row;
}

.image-section {
    flex: 1;
    background-color: #f8f9fc;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.image-section img {
    width: 100%;
    max-width: 300px;
}

.login-section {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header {
    text-align: right;
    margin-bottom: 20px;
}

.header p {
    margin: 0;
}

.header a {
    color: #007bff;
    text-decoration: none;
}

h1 {
    margin: 0 0 10px;
    font-size: 32px;
}

p {
    margin: 0 0 20px;
    color: #888;
}

form {
    display: flex;
    flex-direction: column;
}

form input {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.recovery {
    color: #007bff;
    text-decoration: none;
    align-self: flex-end;
    margin-bottom: 20px;
}

button {
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: #5affff;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #61afaf;
}

.alternative-login {
    text-align: center;
}

.alternative-login p {
    margin: 20px 0 10px;
    color: #888;
}

.icons {
    display: flex;
    justify-content: center;
}

.icons a {
    margin: 0 10px;
}

.icons img {
    width: 40px;
    height: 40px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .image-section {
        display: none;
    }

    .login-section {
        padding: 20px;
    }
}
