* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    /*background-color: #2c2c2c;*/
    /*background-image: url('public/images/fondo.png');*/
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.login-box {
    background-color: #fff;
    width: 90%;
    max-width: 90%;
    height: 80%;
    max-height: 80%;
    border-radius: 15px;
    display: flex;
    box-shadow: 0 16px 50px rgba(150, 150, 150, 0.4);
    overflow: hidden;
}

.login-left {
    flex: 6;
    background-color: #555;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-right {
    flex: 4;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 250px;
    margin-bottom: 20px;
}

form {
    width: 100%;
    display: flex;
    flex-direction: column;
	align-items: center;
}

.input-login {
    width: 60%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 25px;
    font-size: 12px;
}

.btn-login{
    width: 60%;
    padding: 15px;
    background-color: #0066ff;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-login:hover {
    background-color: #0052cc;
}

/* Responsividad */
@media (max-width: 768px) {
    .login-box {
        flex-direction: column;
        height: auto;
    }

    .login-left {
        height: 200px;
    }

    .login-right {
        padding: 20px;
    }

    .logo {
        width: 120px;
    }

    input, button {
        padding: 10px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .login-box {
        width: 95%;
        height: auto;
    }

    .login-right {
        padding: 15px;
    }

    .logo {
        width: 60px;
    }

    input, button {
        padding: 10px;
        font-size: 12px;
    }
}