@import url('./root-elems.css');

.body-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('/images/background.jpg') no-repeat center center fixed;
    background-size: cover;
}
h2 {
    margin: 0px;
    margin-bottom: 8px;
    color: var(--dark-primary);
}
.signin-box {
    background-color: var(--light-bg-white);
    padding: 30px;
    padding-top: 10px;
    border-radius: 12px;
    box-shadow: 0 0 2px var(--primary-shadow);
    text-align: center;
    width: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#signin-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.signin-box img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}
.signin-box input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    border-color: var(--dark-primary);
    background-color: var(--light-bg-white);
    border: 1px solid black;
}
.signin-box input:focus {
    border: 1px solid #1976d2;
    outline: none;
}
.signin-box button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 10px;
    background-color: #2196f3;
    color: white;
    cursor: pointer;
    font-weight: 400;
}
.signin-box button:hover {
    background-color: #1976d2;
}
.signin-box a {
    display: block;
    margin-top: 10px;
    color: #1976d2;
    text-decoration: none;
}
