@font-face {
    font-family: "GE SS Two";
    src: url(/font.otf);
}
* {
    font-family: "GE SS Two", Arial;
}

body {
    background-image: url(/img/bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: right;
}

.content {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.form-content {
    max-height: 500px;
    max-width: 500px;
}

h1 {
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
    color: #000000;
}

p {
    font-weight: 300;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
}

.input {
    direction: rtl;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 6px 10px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.91);
    border: 1px solid #6B6B6B;
    border-radius: 100px;
}

.form-control {
    border: none !important;
    background: none !important;
    outline: none !important;
    width: 100%;
    margin-right: 10px;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
    box-shadow: none;

}

.form-control:focus {
    border: none !important;
    background: none !important;
    outline: none !important;
    box-shadow: none;
}

label {
    margin-right: 10px;
    margin-bottom: 2px;
    margin-top: 7px;

}

button {
    background: #000000 !important;
    border-radius: 100px !important;
    border: unset !important;
    width: 247px;
}

a {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-decoration: unset;

    text-align: center;
    color: #000000;
}

.notify {
    padding: 10px;
    color: #000;
    overflow: hidden;
}

.notify .loop {
    display: inline-block;
    animation-name: notify-loop;
    animation-iteration-count: infinite;
    animation-duration: 7s;
    animation-timing-function: linear;
}

@keyframes notify-loop {
    from {
        transform: translateX(-200%);
    }
    to {
        transform: translateX(200%);
    }
}
