body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f8dadc;
    height: 100vh;
    overflow: hidden;
}


.container {
    display: flex;
    width: 100%;
    height: 100vh;
    position: relative;
}


.logo {
    width: 200px; 
    position: absolute;
    top: 0px; 
    left: 0px; 
    z-index: 10;
}

.language-toggle {
    position: absolute;
    top: 80px; 
    left: 53.5%;
    width: 70px;
    height: 70px;
    background-color: #dc4e80;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    color: #470a71;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.3s;
    z-index: 20;
  }
  
  .language-toggle:hover {
    background-color: #dc4e80;
    transform: scale(1.1);
  }  
  
.left {
    width: 55%;
    background-color: #f8dadc;
    padding: 100px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    clip-path: polygon(0 0, 90% 0, 75% 100%, 0% 100%);
}

.left h1 {
    font-size: 4rem;
    color: #470a71;
    margin-bottom: 10px;
}

.left p {
    font-size: 1.5rem;
    color: #470a71;
    margin-bottom: 30px;
}

.left input[type="email"],
.left input[type="password"] {
    width: 90%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 20px;
    border: 1px solid #b388eb;
    outline: none;
    font-size: 1rem;
}

.remember-me {
    display: flex;
    align-items: center;
    margin: 15px 0;
    width: 80%;
}

.remember-me input {
    margin-right: 10px;
}


.button {
    width: 100%;
    padding: 15px;
    background-color: #dc4e80;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s;
}

.button:hover {
    background-color: #c2185b;
}

.account-link {
    margin-top: 20px;
    color: #5e287f;
}

.account-link a {
    text-decoration: none;
    color: #9c27b0;
    font-weight: bold;
}


.social-links {
    margin-top: 30px;
    font-size: 14px;
    color: #470a71;
}

.social-links span {
    cursor: pointer;
    text-decoration: underline;
}


.right {
    width: 45%;
    background: url('img/Foto.png') center/cover no-repeat;
}


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

    .left, .right {
        width: 100%;
        height: 50vh;

    }

    .logo {
        width: 80px;
        top: 10px;
        left: 10px;
    }
}
