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

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    box-sizing: border-box;
    background-color: #f7dfdf;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.borda-tela {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: 15px solid #935e67;
    pointer-events: none; 
    z-index: 9999;
}


.screen-wrapper {
    display: flex;
    width: 100vw;
    height: 100vh;
}


.left-side {
    flex: 1;
    background-color: #cca2a2;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.left-side::after {
    content: "";
    position: absolute;
    top: 0;
    right: -1px;
    height: 100%;
    width: 50px;
    background-color: #f7dfdf;
    clip-path: ellipse(35px 60% at 35px 50%);
    z-index: 1;
}


.dog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}


.decor-heart {
    position: absolute;
    top: 5%;
    left: 8%;
    color: #ffffff;
    font-size: 28px;
    opacity: 0.7;
    z-index: 2;
}
.decor-paws {
    position: absolute;
    bottom: 15%;
    left: 5%;
    color: #dfb2b2;
    font-size: 45px;
    opacity: 0.6;
    z-index: 2;
}


.right-side {
    flex: 1.2;
    background-color: #f7dfdf;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    overflow-y: auto; 
}


.logo-area {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #3d2b2b;
    margin-bottom: 20px;
}
.logo-area i {
    font-size: 22px;
}


.title-area {
    text-align: center;
    margin-bottom: 25px;
    color: #3d2b2b;
}
.title-area i {
    font-size: 26px;
    color: #a46868;
    margin-bottom: 2px;
}
.title-area h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
}
.title-area p {
    font-size: 12px;
    color: #5a4545;
    max-width: 280px;
    margin: 5px auto 0 auto;
}
.title-area .mini-paw {
    font-size: 13px;
    color: #a46868;
    margin-top: 6px;
    display: block;
}


form {
    width: 100%;
    max-width: 360px;
}

.input-group {
    margin-bottom: 12px;
}

.input-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #4a3636;
    margin-bottom: 4px;
}

.input-box {
    position: relative;
    display: flex;
    align-items: center;
}

.input-box i {
    position: absolute;
    left: 15px;
    color: #9c8282;
    font-size: 14px;
}

.input-box input {
    width: 100%;
    padding: 10px 15px 10px 45px;
    border: none;
    background-color: #ebd2d2;
    border-radius: 8px;
    font-size: 13px;
    color: #5a4545;
    outline: none;
    transition: background 0.2s;
}

.input-box input::placeholder {
    color: #bfa3a3;
}

.input-box input:focus {
    background-color: #e5b2b2;
}


.btn-submit {
    width: 100%;
    padding: 12px;
    background-color: #925f5f;
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(146, 95, 95, 0.3);
    transition: background 0.2s;
}

.btn-submit:hover {
    background-color: #7d4f4f;
}


.form-footer {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.form-footer .divisor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.form-footer .divisor p {
    font-size: 12px;
    color: #9c8282;
    text-transform: lowercase;
}

.form-footer .linha {
    flex: 1;
    width: px;
    height: 2px;
    background-color: #bfa3a3;
}

.form-footer p {
    font-size: 12px;
    color: #5a4545;
}

.form-footer a {
    color: #925f5f;
    text-decoration: none;
    font-weight: 600;
}

.form-footer a:hover {
    text-decoration: underline;
}

.logo-area .logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .screen-wrapper {
        flex-direction: column;
    }
    .left-side {
        display: none; 
    }
    .right-side {
        padding: 30px 20px;
        height: 100vh;
    }
}

