﻿@import "fonts.css";

:root {
    font-family: 'PlexSans';
    --light-blue: rgba(2, 126, 230, 0.1);
    --medium-blue: rgba(6, 92, 193, 0.7);
    --dark-gray: rgba(77, 77, 77, 0.9);
    --light-gray: rgba(77, 77, 77, 0.7);
}

#login-container {
    padding-left: 660px;
    padding-top: 20vh;
    text-align: left;
}

#logo {
    width: 192px;
    height: 28px;
    background-image: url(../images/bitdefender-logo-blue.svg);
}

.title {
    font-size: 20px;
    margin-top: 20px;
    font-family: 'PlexSansMedium';
    color: var(--medium-blue);
    margin-bottom: 12px;
}

.subtitle {
    font-size: 14px;
    margin-top: 6px;
    font-family: 'PlexSans';
    color: var(--light-gray);
}

.go-back-button {
    font-size: 14px;
    margin-top: 50px;
    box-sizing: border-box;
    font-family: "IBM Plex Sans", sans-serif;
    text-decoration: underline;
    color: rgba(6, 92, 193, 0.7);
}

.go-back-link {
    color: inherit;
    text-decoration: inherit;
}

.side-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 500px;
    height: 100vh;
    background: url(../images/side-image.png) no-repeat;
    background-size: cover;
}

#login-form {
    margin-top: 10%;
    width: 320px;
}

.login-input {
    margin-top: 13px;
}

#reset-pass {
    text-decoration: underline;
    text-align: right;
}

.button-content {
    font-family: "Montserrat", sans-serif;
    min-width: 60px;
}

.button-container {
    margin-top: 5%;
    width: 100%;
    position: relative;
    margin-bottom: 45px;
    display: flex;
}

.button-container div {
    align-content: flex-start;
}

#cancel-button {
    position: absolute;
    right: 0;
}

.hidden-link {
    color: inherit;
    text-decoration: inherit;
}

.error-message {
    visibility: hidden;
    color: #ec5b62;
    text-align: left;
    padding-left: 12px;
    font-size: 12px;
}

#login-container gz-button {
    padding-right: 16px;
}

#language-selector {
    position: absolute;
    top: 5%;
    right: 5%;
}

#login-button-container {
    margin-top: 25px;
}

gz-single-select {
    --dropdown-min-width: 160px;
    --dropdown-width: 160px;
    --font-family-secondary: 'PlexSans';
}

.line-with-text {
    display: flex;
    align-items: center;
    width: 100%;
}

.line {
    flex-grow: 1;
    border-bottom: 1px solid lightgray;
}

.text {
    margin: 0 10px;
    width: 14px;
    font-family: "Roboto", sans-serif;
    font-size: 10px;
    color: rgba(0, 0, 0, 0.7);
}

.long-button {
    min-width: 290px;
}

.color-reset-my-password {
    color: rgba(6, 92, 193, 0.7);
}

.learn-more-box {
    display: flex;
    flex-direction: row;
    margin-top: 30px;
    gap: 10px;
    width: 320px;
    justify-content: center;
}

.learn-more-text {
    font-size: 14px;
    margin-top: 6px;
    font-family: 'PlexSans';
    color: rgba(6, 92, 193, 0.7);
}