@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: Heebo;
    src: url("../fonts/Heebo-Regular.ttf");
    font-display: swap;
    font-weight: normal;
}

@font-face {
    font-family: Heebo;
    src: url("../fonts/Heebo-Bold.ttf");
    font-display: swap;
    font-weight: bold;
}

* {
    box-sizing: border-box;
}

body {
    font-size: 18px;
    font-family: 'Heebo', sans-serif;
}

.login_container {
    width: 100%;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("../images/login_bg_2.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /*background-color: #0a0a0a; !* רקע כהה *!*/
    /*background-image: repeating-linear-gradient(*/
    /*        45deg,          !* זווית הפסים *!*/
    /*        #0a0a0a,        !* צבע רקע בסיס *!*/
    /*        #0a0a0a 10px,   !* עובי פס כהה *!*/
    /*        #1a0a0a 10px,   !* צבע פס דק *!*/
    /*        #1a0a0a 11px    !* עובי פס דק *!*/
    /*);*/
}

.login_form {
    width: calc(100% - 40px);;
    height: auto;
    overflow: auto;
    max-width: 400px;
    max-height: calc(100dvh - 40px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(17, 17, 17, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px;
    color: white;
}

.login_form_title {
    font-size: 2em;
    text-align: center;
    margin: 10px auto 30px;
}

.login_form input {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin: 10px auto;
    padding: 16px;
    border-radius: 50px;
    background-color: black;
    color: white;
}

.login_form input::placeholder {
    color: white;
    opacity: .5;
}

.login_form button {
    width: 100%;
    background: linear-gradient(to bottom, #ff6666 0%, #cc0000 100%); /* מלמעלה למטה */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    border: none;
    margin: 24px auto 12px;
    padding: 12px 16px;
    font-size: 1.2em;
    border-radius: 50px;
    font-weight: bold;
    color: white;
    transition: .3s;
}

.login_form button:hover {
    opacity: .6;
}

.login_form_logo {
    width: 100%;
    display: block;
    margin: 12px auto 24px;
    max-width: 200px;
}

.login_form__forget_password {
    color: white;
    display: flex;
    justify-content: end;
    margin: 10px auto 30px;
    transition: .3s;
}

.login_form__forget_password:hover {
    color: var(--main_color);
}