/* RESET */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* BODY */
body {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    background: #f4f6f8;
    height: 100vh;
    display: flex;
}

/* CONTAINER PRINCIPAL */
main {
    display: flex;
    width: 100%;
    height: 100vh;
}

/* LADO ESQUERDO (LOGIN) */
.login-container {
    width: 420px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    box-shadow: 4px 0 20px rgba(0,0,0,0.05);
}

/* LOGO */
#logo {
    width: 140px;
    margin-bottom: 40px;
}

/* TITULO */
h1 {
    font-size: 26px;
    color: #2d3a40;
    margin-bottom: 30px;
    font-weight: 600;
}

/* FORM */
form#login {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* LABEL */
label {
    font-size: 14px;
    color: #5a6b75;
    margin-bottom: 6px;
}

/* INPUT */
input {
    height: 44px;
    border: 1px solid #dce1e5;
    border-radius: 6px;
    padding: 0 12px;
    margin-bottom: 18px;
    font-size: 14px;
    transition: 0.2s;
}

input:focus {
    outline: none;
    border-color: #1976d2;
    box-shadow: 0 0 0 2px rgba(25,118,210,0.1);
}

/* BOTÃO */
#login-button {
    height: 44px;
    border: none;
    border-radius: 6px;
    background: #1976d2;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

#login-button:hover {
    background: #1565c0;
}

/* LINK CADASTRO */
#register-link {
    margin-top: 18px;
    font-size: 14px;
    color: #5a6b75;
    text-decoration: none;
}

#register-link span {
    color: #1976d2;
    font-weight: 600;
}

/* OU */
#or-container {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

#left-line,
#right-line {
    flex: 1;
    height: 1px;
    background: #dce1e5;
}

#or {
    margin: 0 10px;
    color: #7a8a93;
    font-size: 13px;
}

/* SOCIAL */
.social-container {
    display: flex;
    gap: 10px;
}

#google, #facebook, #linkedin {
    flex: 1;
    height: 42px;
    border: 1px solid #dce1e5;
    border-radius: 6px;
    background-color: white;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: 0.2s;
}

#google:hover,
#facebook:hover,
#linkedin:hover {
    background-color: #f4f6f8;
}

#google {
    background-image: url(../assets/Login&Register/Google-icon.svg);
}

#facebook {
    background-image: url(../assets/Login&Register/Facebook-icon.svg);
}

#linkedin {
    background-image: url(../assets/Login&Register/LinkedIn-icon.svg);
}

/* LADO DIREITO (IMAGEM) */
.right-panel {
    flex: 1;
    background-image: url("../assets/login-bg.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
}

/* TEXTO SOBRE IMAGEM */
.right-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.right-panel-content {
    position: absolute;
    bottom: 60px;
    left: 60px;
    color: white;
    max-width: 400px;
}

.right-panel-content h2 {
    font-size: 32px;
    font-weight: 600;
}

/* RESPONSIVO */
@media (max-width: 900px) {

    .right-panel {
        display: none;
    }

    .login-container {
        width: 100%;
    }

}