﻿.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

.login-intro {
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
    max-width: 300px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(84, 72, 49, 0.15);
}

h1 {
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    margin: 0px;
    color: #040404;
}

h2 {
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    margin: 0px;
    color: rgba(70, 68, 64, 0.45);
}

form {
    
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.login-control {
    display: flex;
    flex-direction: column;
}

    .login-control label {
        display: block;
        margin-bottom: 4px;
        font-size: 12px;
        color: rgb(115, 114, 110);
        font-weight: 500;
    }

.login-input {
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 15px;
    line-height: 26px;
    position: relative;
    border-radius: 2px;
    border: 1px solid rgba(84, 72, 49, 0.15);
    box-shadow: rgba(15, 15, 15, 0.1) 0px 0px 0px 1px; 
    background: transparent;
    cursor: text;
    padding: 4px 10px;
    margin-top: 4px;
    margin-bottom: 8px;
}

    .login-input:focus {
        outline: none; /* pašalina browser’io default outline */
        border: 1px solid #2382e2; /* tavo mėlynas kraštas */
        
    }

.login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 36px;
    font-size: 15px;
    line-height: 1;
    border-radius: 2px;
    border: none;
    background-color: #78b833; /* tavo mėlyna spalva */
    color: white; /* balta spalva tekstui */
    cursor: pointer;
}

.validation-notification {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 12px 0;
    gap: 5px;
}
.validation {
    font-size: 12px;
    color: #EB5757;
}

.password-error {
    font-size: 12px;
    display: flex;
    justify-content: space-between;
}

.forgot-password a {
    font-size: 12px;
    color: rgb(115, 114, 110);
    font-weight: 500;
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
}
