﻿@import "bourbon";

body {
    background: #eee !important;
    font-family: 'Vazirmatn', sans-serif;
    direction: rtl;
}
#background-canvas {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: radial-gradient(circle at center, #e0f7fa, #b2dfdb);
    filter: blur(0.2px);
}

.wrapper {
    margin-top: 80px;
    margin-bottom: 80px;
    text-align: center;
}

.form-signin {
    max-width: 380px;
    padding: 15px 35px 45px;
    margin: 0 auto;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    .form-signin-heading

{
    margin-bottom: 30px;
    color: #00796b;
    font-weight: bold;
    font-size: 18px;
}

.tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    .tab-button

{
    font-family: 'Vazirmatn', sans-serif;
    flex: 1;
    padding: 10px;
    border: none;
    background: #b2dfdb;
    color: #004d40;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    &.active

{
    background: #00796b;
    color: white;
}

}
}

.tab-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    &.hidden

{
    display: none;
}

}

.form-control {
    position: relative;
    font-size: 16px;
    height: auto;
    padding: 10px;
    font-family: 'Vazirmatn', sans-serif;
    @include box-sizing(border-box);
    &:focus
{
    z-index: 2;
}

}

input[type="text"] {
    margin-bottom: -1px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

input[type="password"] {
    margin-bottom: 20px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.login-button {
    font-family: 'Vazirmatn', sans-serif;
    background-color: #00796b;
    color: white;
    border: none;
    padding: 10px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
    &:hover

{
    background-color: #004d40;
}

}
}

footer {
    margin-top: 30px;
    font-size: 13px;
    color: #004d40;
    font-weight: bold;
    animation: fadeIn 2s;
    

{
    text-decoration: none;
    color: #00796b;
}

}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
