﻿@font-face {
    font-family: "Cairo";
    src: url("../fonts/Cairo-Regular.woff2") format("woff2");
}

@font-face {
    font-family: "decotype-thuluth";
    src: url("../fonts/arfonts-decotype-thuluth-ii.woff2") format("woff2");
}
/* ====== BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Cairo;
}

/* ====== Body ===== */
body {
    background-image: url("../img/pattern.png");
    background-color: #00082df5;
    /*  background: radial-gradient(circle at bottom, #0a1237 60%,#9f814e 105%);*/
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 0 20px;
}

/* ====== Form container ===== */
.form-container {
    display: flex;
    width: 1000px;
    height: 600px;
    border: 3px solid rgba(255, 255, 255,0.3);
    border-radius: 30px;
    backdrop-filter: blur(12px);
}

/* ====== First Column ===== */
.col-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 55%;
    background: rgb(164 195 228 / 12%);
    backdrop-filter: blur(30px);
    border-radius: 30% 5% 5% 20%;
    transition: border-radius .3s;
}


.image-layer {
    position: relative;
}

.form-image-main {
    width: 250px;
    animation: scale-up 3s ease-in-out alternate infinite;
}

.logo-image {
    width: 100px;
    margin-top: 20px;
}

.form-image {
    position: absolute;
    right: 0;
    width: 100px;
}

.login {
    bottom: 0;
}

.image-layer1 {
    position: relative;
    text-align: center;
}

.form-image1 {
    width: 100px;
}

.coins {
    position: absolute;
    z-index: 999;
    right: 100px;
    bottom: 3px;
}
/* ====== Form Image Animation ===== */


@keyframes left-right {
    to {
        transform: translateY();
    }
}

@keyframes scale-up {
    to {
        transform: scale(1.05);
    }
}

/* ====== Featured Words ===== */

.featured-words {
    text-align: center;
    color: #fff;
    width: 300px;
}

    .featured-words span {
    }
/* ====== input Column ===== */
.col-input {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    width: 45%;
    padding: 25px;
}

a {
    text-decoration: none;
}

.btn-box {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.btn {
    font-weight: 500;
    padding: 5px 30px;
    border: none;
    border-radius: 30px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: 0 5px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: .2s;
}

.btn-1 {
    background: #02254b;
}

.btn:hover {
    opacity: 0.05;
}

.title {
    font-family: decotype-thuluth;
    font-size: 40px;
    font-weight: 400;
    color: #fff;
}
/*  ======= Login Form ========  */
.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 4vw;
    transition: .3s;
}

.form-title {
    margin: 20px 0 30px 0;
    color: #fff;
    font-size: 28px;
    font-weight: 600;
}

.form-inputs {
    width: 100%;
}

.input-box {
    position: relative;
}

.input-field {
    width: 100%;
    height: 55px;
    padding: 0 15px;
    margin: 10px 0;
    color: #fff;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 10px;
    outline: none;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

::placeholder {
    color: #fff;
    font-size: 15px;
}

.input-box .icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #fff;
}

.input-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 55px;
    padding: 0 15px;
    margin: 10px 0;
    color: #fff;
    background: rgb(191,158,102);
    border: none;
}

    .input-submit:hover {
        gap: 15px;
    }

/* ======== Responsive ======== */
@media(max-width:892px) {
    .form-container {
        width: 400px;
    }

    .col-logo {
        display: none;
    }

    .col-input {
        width: 100%;
    }
}
