:root{
    --verde:#A5BF13;
    --verde-limao: #c9df3c;
    --verde-escuro: #218838;
    --verde-escuroB: #269e40;
    --azul:#62929E;
    --azulB:#71acb9;
    --pretoA:#111111;
    --pretoB:#292929;
    --preto4:#444;
    --preto5:#555;
    --branco: #fff;
    --brancoA:#F0F0F0;
    --brancoB:#EEEEEE;
    --cinza:#A9B2B5;
    --cinza-Az:#C9D4D9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body{
    background: var(--cinza-Az);
}

.container {
    display: flex;
    height: 100vh;
}

.left {
    flex: 1;
    background: var(--cinza-Az);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

p{
    margin-bottom: 20px;
     text-align: center;
      color: #555;
}

h1{
    color: var(--azul);
    font-family: 'league spartan';
    font-size: 28px;
    margin: 1em;
    position: fixed;
}

.form-group {
    width: 100%;
    max-width: 300px;
    margin-bottom: 20px;
    display: flex;
}

label {
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
    font-family: 'montserrat'
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 0px 8px;
    border: none;
    border-bottom: 2px solid var(--preto4);
    background: transparent;
    outline: none;
    font-size: 16px;
}

.forgot {
    font-size: 12px;
    color: var(--preto4);
    text-align: left;
    margin-top: 5px;
    margin-bottom: 20px;
    cursor: pointer;
}

.forgot:hover{
    text-decoration: underline;
}

.social-login {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.social-login button {
    border: none;
    background: var(--brancoA);
    padding: 10px 14px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    cursor: pointer;
    font-size: 18px;
}

.social-login button:hover{
    color: var(--azulB);
}


.social-login button:active{
    transform: scale(0.95);
}

.btn-login {
    width: 50%;
    padding: 10px;
    background-color: var(--azul);
    color: var(--brancoA);
    font-weight: bold;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: pointer;
}

.btn-login:hover{
    background-color: var(--azulB);
}

.btn-login:active{
    transform: scale(0.98);
}

.btn-cadastrar {
    width: 50%;
    padding: 10px;
    background-color: var(--verde);
    color:var(--brancoA);
    font-weight: bold;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    margin-bottom: 20px;
    cursor: pointer;
}

.btn-cadastrar:hover{
    background-color: var(--verde-limao);
}

.btn-cadastrar:active{
    transform: scale(0.98);
}

.right {
    flex: 1;
    background-image: url(jardim.jpg);
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

v {
    width: 80%;
    max-width: 300px;
}

footer{
      text-align: center;
      background-color: var(--pretoB);
      padding: 15px 0;
      font-size: 0.9em;
      bottom: 0;
      width: 100%;
      margin-top: auto;
      font-family: 'montserrat';
      border-top: 1px solid var(--brancoB);
    }

.foot{
    margin-bottom: 0;
    color: var(--brancoA);
}

@media (max-width: 660px) {
    .container {
    flex-direction: column;
    }

    .left{
        margin-top: 10em;
    }

    .right {
    visibility: hidden;
    height: 0;
    width: 0;
    background-image: none;
    background-size: 0;
    }

    .right-content{
        visibility: hidden;
        height: 0;
        width: 0;
    }

}