﻿body {
    --color-primary: #089BAB;
    --color-primary-dark: #007f67;
    --color-secondary: #ff3278;
    --color-error: #cc3333;
    --color-success: #4bb544;
    --border-radius: 4px;
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background-size: cover;
    font-family: 'Poppins';
}
.loginboxdiv {
    background: white;
    padding: 20px 20px 30px 20px;
    margin: auto;
    box-shadow: 0px 8px 10px rgb(0 0 0 / 14%), 0px 3px 14px rgb(0 0 0 / 12%), 0px 5px 5px rgb(0 0 0 / 20%);
    border-radius: 10px;
    position: absolute;
    top: 300px;
    right: 20%;
    min-width: 25%;
    /*height: 40%;*/
}
.form__input {
    display: block;
    width: 100%;
    padding: 0.5rem;
    box-sizing: border-box;
    border-radius: var(--border-radius);
    border: 1px solid #dddddd;
    outline: none;
    background: #eeeeee;
    transition: background 0.2s, border-color 0.2s;
    font-size: 16px;
    font-family: Poppins;
}

.form__button {
    width: 100%;
    padding: 0.5rem 1rem;
    font-weight: normal;
    font-size: 1.1rem;
    color: #ffffff;
    border: none;
    border-radius: var(--border-radius);
    outline: none;
    cursor: pointer;
    background: #2D6D76;
}
.form__input-group {
    margin-bottom: 1rem;
}
