@import url("https://fonts.googleapis.com/css2?family=Vazirmatn:wght@100..900&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Vazirmatn", sans-serif;
}
body {
    background-color: #101010;
    color: #fff;
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(100% - 40px, 400px);
}

.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 24px;

    img {
        height: 48px;
    }
}
.logoImg {
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}
form{
    width: 100%;
}
.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
        width: 100%;

}

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 4px solid #fff;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

h1 {
    font-size: 32px;
}

.invite-code {
    color: #aaa;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #aaa;
}

input {
    width: 100%;
    padding: 15px;
    border: 1px solid #333;
    border-radius: 25px;
    background-color: #222;
    color: #fff;
    &#otp {
        text-align: center;
        font-size: 24px;
        letter-spacing: 10px;
    }
}

button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 25px;
    background-color: #fff;
    color: #000;
    font-size: 16px;
    cursor: pointer;
}

.back-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    padding: 6px 16px;
    border: 1px solid #ffffff50;
    width: fit-content;
}
