@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root {
    --login-bg: #f8f3ff;
    --title-bg: #9089cc;
    --button-bg: #674baf;
    --light-pink: #e882e8;
    --image-bg: #eadbff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}



.login-container {
    height: auto;
    width: 60em;
    max-width: 90%;
    margin: 4em auto;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    background-color: var(--login-bg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.login-info-container {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-color: var(--login-bg);
}

.image-container {
    width: 50%;
    padding: 2rem;
    background-color: var(--image-bg);
}

.title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--title-bg);
    margin-bottom: 1rem;
}

.social-login {
    width: 100%;
    display: flex;
    justify-content: space-around;
    cursor: pointer;
    gap: 1rem;
}

.social-login-element {
    width: 12rem;
    height: 3.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 5px;
    border: 1px solid var(--button-bg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-login-element img {
    width: 2rem;
    height: 2rem;
    margin-right: 0.5rem;
}

.input, .btn {
    width: 90%;
    height: 3rem;
    font-size: 1rem;
}

.input {
    padding-left: 15px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    letter-spacing: 1px;
    outline: none;
}

.input:focus {
    border: 2px solid var(--button-bg);
}

.btn {
    width: 80%;
    text-transform: uppercase;
    color: white;
    border: none;
    border-radius: 5px;
    background-color: var(--button-bg);
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background-color: var(--light-pink);
}

/* 📱 Ajustes responsivos */
@media screen and (max-width: 1000px) {
    .login-container {
        flex-direction: column;
        width: 80%;
        margin-top: 3rem;
    }
    .login-info-container {
        width: 100%;
        border-radius: 5px;
        padding: 1.5rem;
    }
    .image-container {
        display: none;
    }
}

@media screen and (max-width: 650px) {
    .login-container {
        width: 90%;
    }
}

@media screen and (max-width: 500px) {
    .login-container {
        height: auto;
        padding: 1rem;
    }

    .social-login {
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    .btn {
        width: 100%;
    }
}







