/* Base Styles */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto Mono", monospace;
    user-select: none;
}

body,
html {
    width: 100vw;
    max-width: 100vw;
    min-height: 100vh;
    color: var(--primary-color);
    overflow-x: hidden;
    position: relative;
    z-index: 0;
    background-color: rgb(2, 26, 46);
    /* fallback */
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* background: url('https://img.freepik.com/premium-psd/abstract-memphis-background-3d-modern-horizontal-background-download-photoshop-file-colorful-bg_691560-7.jpg?w=826') center center / cover no-repeat; */
    filter: blur(8px) brightness(0.75);
    z-index: -1;
    pointer-events: none;
}


#google_translate_element,
.goog-te-banner-frame,
.goog-te-menu-frame,
.goog-te-gadget,
.goog-te-combo,
.goog-logo-link {
    display: none !important;
}

iframe {
    display: none !important;
}

@media only screen and (min-width: 550px) {

    button,
    i,
    a {
        cursor: pointer;
    }
}

/* Form Styles */
.form {
    width: 93vw;
    height: 80vh;
    max-width: 500px;
    max-height: 480px;
    background-color: rgba(0, 0, 0, 0.158);
    border-radius: 10px;
    backdrop-filter: blur(20px) saturate(120%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid var(--border-color);
    box-shadow: 0 0 40px var(--shadow-color);
    padding: 25px 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    z-index: 999;
    transition: all .5s;
    background: blur(3px);
}

.form * {
    color: rgb(143, 143, 143);
    letter-spacing: 0.5px;
    outline: none;
    border: none;
}

.form__title {
    font-size: 32px;
    font-weight: 600;
    line-height: 42px;
    text-align: center;

}

.form__label {
    display: block;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 500;
}

.form__input {
    display: block;
    height: 50px;
    width: 100%;
    background-color: var(--secondary-bg);
    border-radius: 3px;
    padding: 0 10px;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 300;
    color: var(--primary-color);
    border: 1px solid var(--primary-border);
}

::placeholder {
    color: var(--placeholder-color);
}

.form__button {
    margin-top: 50px;
    width: 100%;
    background-color: var(--button-bg);
    color: var(--button-text);
    padding: 15px 0;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.form__button:hover {
    opacity: 0.9;
}

.form__footer {
    margin-top: 20px;
}

.form__link {
    text-decoration: underline;
    transition: all 0.3s ease;
}

.form__link:hover {
    opacity: 0.8;
}

.form__input-box {
    position: relative;
    display: flex;
    align-items: center;
}

.form__toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-30%);
    color: #000;
}

@media (min-width:800px) {
    .form {
        width: 75%;
    }
}

/* Add these variables to your :root or CSS variables */
:root {
    --primary-bg: #ffffff;
    --secondary-bg: #e8e9e8;
    --primary-color: rgb(129, 128, 128);
    --primary-border: #0e0e0e0a;
    --primary-shadow: rgba(0, 0, 0, 0.089);
    --placeholder-color: #888888;
    --button-bg: #ffffff;
    --button-text: #363636;
    --link-color: #fc8a2d;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.3);
}
