﻿/*----------------------- LOGIN -----------------------*/
.body-login {
    background: linear-gradient(to right, #be060e, #E34244);
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: flex-start;
    height: 100vh;
    overflow: auto;
    padding: 0 10px;
}

.login-container {
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 3px 3px 0px;
    border-radius: 15px;
    padding: 10px;
    width: 340px;
}

.login-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

    .login-logo .logo {
        width: 300px;
    }

.login-container input[type="text"], input[type="password"] {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.login-action-container {
    display: flex;
    justify-content: flex-end;
}
