@font-face {
    font-family: 'vazir';
    src: url(../fonts/ttf/Vazirmatn-Medium.ttf);
}

body {

    font-family: 'vazir';
    background-color: #000;
}

.auth-container {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.auth-box {
    background-color: #000;
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    border: 1px solid #fff;
    color: #fff;
    text-align: right;
}

.auth-box h2 {
    display: flex;
    justify-content: center;
}

.auth-box p {
    color: #ffffff;
    display: flex;
    justify-content: center;
}

.input-group {
    margin-bottom: 20px;
    font-size: 1rem;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.input-group input {
    width: 100%;
    padding: 12px;
    background: #000;
    border: 1px solid #fff;
    border-radius: 8px;
    color: #fff;
    box-sizing: border-box;
}

.input-group input::placeholder{
    font-family: 'vazir';
    font-size: 1rem;
}

.input-group input:focus {
    border-color: green;
    outline: none;
}

.auth-btn {
    font-family: 'vazir';
    width: 100%;
    padding: 12px;
    background-color: #000;
    border: 1px solid #fff;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    font-size: 1rem;
    color: #fff;
}

.auth-btn:hover{
    border: 1px solid green;
}

.auth-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 1rem;
    color: #ffffff;
}

.auth-footer a {
    color: green;
    text-decoration: none;
}