@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


*, html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', 'sans-serif';
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5f5f5; /* fondo general más neutro */
}

.container {
    width: 50vw;
    height: 60vh;
    display: grid;
    grid-template-columns: 100%;
    grid-template-areas: "login";
    box-shadow: 0 0 17px 10px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    background: white;
    overflow: hidden;
}

.design {
    grid-area: design;
    display: none;
    position: relative;
}

.rotate-45 {
    transform: rotate(-45deg);
}

/* Tonos azul suave para las pastillas */
.design .pill-1 {
    bottom: 0;
    left: -40px;
    position: absolute;
    width: 80px;
    height: 200px;
    background: linear-gradient(#b3cde0, #a0c4ff, #90caf9);
    border-radius: 40px;
}

.design .pill-2 {
    top: -100px;
    left: -80px;
    position: absolute;
    height: 450px;
    width: 220px;
    background: linear-gradient(#b3cde0, #a0c4ff, #90caf9);
    border-radius: 200px;
    border: 30px solid #dceaff;
}

.design .pill-3 {
    top: -100px;
    left: -160px;
    position: absolute;
    height: 200px;
    width: 100px;
    background: linear-gradient(#b3cde0, #a0c4ff, #90caf9);
    border-radius: 70px;
}

.design .pill-4 {
    bottom: -180px;
    left: 220px;
    position: absolute;
    height: 300px;
    width: 120px;
    background: linear-gradient(#b3cde0, #a0c4ff);
    border-radius: 70px;
}

.login {
    grid-area: login;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: white;
}

.login h3.title {
    margin: 15px 0;
    color: #333333;
}

.text-input {
    background: #f0f0f0;
    height: 40px;
    display: flex;
    width: 60%;
    align-items: center;
    border-radius: 10px;
    padding: 0 15px;
    margin: 5px 0;
    border: 1px solid #dddddd;
}

.text-input input {
    background: none;
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    margin-left: 10px;
    color: #333333;
}

.text-input i {
    color: #888888;
}

::placeholder {
    color: #aaaaaa;
}

.login-btn {
    width: 68%;
    padding: 10px;
    color: white;
    background: linear-gradient(to right, #7bb1f9, #4a90e2, #377dc8);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.login-btn:hover {
    background: linear-gradient(to right, #659df0, #357ab8, #2f6fad);
}

a {
    font-size: 12px;
    color: #666666;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
}

a.forgot {
    margin-top: 15px;
}

.create {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 30px;
}

.create i {
    color: #666666;
    margin-left: 10px;
}

@media (min-width: 768px) {
    .container {
        grid-template-columns: 50% 50%;
        grid-template-areas: "design login";
    }

    .design {
        display: block;
    }
}


