* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Trebuchet MS, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f7f7f7;
}

.container {
    display: flex;
    width: 90%;
    height: 700px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

span{
    color: #f13265;
}
.image-side {
    flex: 1;
    background-color: #f7f7f7;
    padding: 10px;
    position: relative;
}

.form-side .logo img {
    width: 120px;
    display: flex;
    margin-left: 200px;
}

.image-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.illustration {
    width: 500px;
    margin-bottom: 25px;
}
.image-content p {
    font-size: 20px;
    color: #555;
    text-align: center;
    margin-bottom: 190px;
}

.form-side {
    flex: 1;
    background-color: #f3bac9;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h2 {
    color: white;
    margin-bottom: 60px;
    font-size: 1.8rem;
}

.login-form {
    width: 100%;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
    width: 100%;
}

.input-group i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: rgb(0, 0, 0);
}
input {
    width: 100%;
    padding: 15px 50px;
    border-radius: 40px;
    outline: none;
    background-color: transparent;
    border: 1px solid #f7f7f7;
    font-size: 18px;
    height: 55px;
}
.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #ff4775;
    color: white;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s;
    font-size: 20px;

}
.input-group input::placeholder{
    color: #ffffff;
}
.submit-btn:hover {
    background-color: #F282A0;
    color: #272727;
    transition: 0.2s;
}

.esqueceu-senha {
    display: flex;
    justify-content: space-between;
    font-size: 17px;
    margin: 15px 0;
}
.esqueceu-senha label {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.esqueceu-senha input[type="checkbox"] {
    accent-color: #ff4775; 
    width: 15px; 
    height: 15px; 
    margin-right: 8px; 
}

.esqueceu-senha a {
    color: #000000;
    text-decoration: none;
}

.esqueceu-senha a:hover {
    text-decoration: underline;
}
 .container .se-registrar{
  font-size: 18px;
 text-align: center;
 margin: 20px  0 15px;
        
}
 .se-registrar p a{
font-weight: 600;
 color: #000000;
 text-decoration: none;
 }
.se-registrar p a:hover{
 text-decoration: underline; 
}    
 .container .se-registrar{
 font-size: 20px;
  text-align: center;
 margin: 20px  0 15px;
                
 }
 .se-registrar p a {
font-weight: 600;
 color: #000000;
text-decoration: none;
}

  .se-registrar p a:hover{
text-decoration: underline;
 }


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

    .image-side, .form-side {
        width: 100%;
    }

    .form-side {
        padding: 30px 20px;
    }
    
    .illustration {
        width: 100%;
        max-width: 300px;
    }

    .form-side .logo {
        margin-left: 0;
        display: flex;
        justify-content: center;
    }

    h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    input, .submit-btn {
        font-size: 1rem;
    }

    .esqueceu-senha, .se-registrar {
        font-size: 14px;
    }

    .input-group i {
        font-size: 1rem;
    }
}

/* Para telas de smartphones */
@media (max-width: 480px) {
    .container {
        box-shadow: none;
        width: 100%;
        padding: 10px;
    }

    .illustration {
        width: 100%;
        max-width: 250px;
    }

    .input-group input {
        padding: 10px 40px;
        font-size: 16px;
    }

    .submit-btn {
        padding: 12px;
        font-size: 1rem;
    }
}

.image-side {
    flex: 1;
    background-color: #f7f7f7;
    padding: 10px;
}

.form-side .logo img {
    width: 120px;
}

.image-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.illustration {
    width: 500px;
    margin-bottom: 25px;
}

.image-content p {
    font-size: 20px;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
}

.form-side {
    flex: 1;
    background-color: #f3bac9;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h2 {
    color: white;
    margin-bottom: 60px;
    font-size: 1.8rem;
    text-align: center;
}

.login-form {
    width: 100%;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
    width: 100%;
}

.input-group i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: rgb(0, 0, 0);
}

input {
    width: 100%;
    padding: 15px 50px;
    border-radius: 40px;
    outline: none;
    background-color: transparent;
    border: 1px solid #f7f7f7;
    font-size: 18px;
    height: 55px;
}

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

.submit-btn:hover {
    background-color: #F282A0;
    color: #272727;
    transition: 0.2s;
}

.esqueceu-senha {
    display: flex;
    justify-content: space-between;
    font-size: 17px;
    margin: 15px 0;
}

.esqueceu-senha label {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.esqueceu-senha input[type="checkbox"] {
    accent-color: #ff4775;
    width: 15px;
    height: 15px;
    margin-right: 8px;
}

.esqueceu-senha a {
    color: #000000;
    text-decoration: none;
}

.esqueceu-senha a:hover {
    text-decoration: underline;
}

.se-registrar {
    font-size: 18px;
    text-align: center;
    margin: 20px 0 15px;
}

.se-registrar p a {
    font-weight: 600;
    color: #000000;
    text-decoration: none;
}

.se-registrar p a:hover {
    text-decoration: underline;
}