﻿.background {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #8dc63f;
    z-index: 1;
}

.form-block {
    width: 375px;
    height: 325px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border: none;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 2;
}

.login-logo {
    width: 100%;
    height: 80px;
    border: none;
    border-top-left-radius: 15px;
    background-color: #0d0d0d; 
    background-image: url("Images/formLogo.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.form-section {
    width: 100%;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
}

.input-container {
    width: 100%;
    height: 75px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 75px;
    align-items: center;
    justify-items: center;
    padding-right: 28px;
}

.input-container span {
    width: auto;
    height: 40px;
    display: flex;
    align-items: center;
    font-size: 34px;
}

.text-box {
    width: 265px;
    height: 45px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 16px;
    background-color: #f2f2f2;
    font-family: 'Poppins', sans-serif;
    border: none;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.btn-container {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-btn {
    width: 100px;
    height: 40px;
    border: none;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    background-color: #8dc63f;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

    .login-btn:hover {
        background: #0d0d0d;
        color: #8dc63f;
    }

.dialog-bg {
    width: 100%;
    height: 100%;
    display: block;
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: black;
    opacity: 0.8;
    overflow: hidden;
}

.popup {
    width: 375px;
    height: auto;
    border-radius: 10px;
    background-color: #f1f1f1;
}

.dialog-body {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-rows: 50px auto 50px;
}

.dialog-header {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

    .dialog-header h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        letter-spacing: 1px;
        color: white;
    }

.dialog-body {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

    .dialog-body p {
        font-family: 'Poppins', sans-serif;
        font-size: 15px;
        color: black;
        text-align: center;
    }

.btn-section {
    width: 100%;
    height: 50px;
    display: flex;
    padding-bottom: 10px;
    align-items: center;
    justify-content: center;
}

.ok-btn {
    width: 100px;
    height: 40px;
    border: none;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    background-color: #0d0d0d;
    color: #8dc63f;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

    .ok-btn:hover {
        background: #8dc63f;
        color: white;
    }
