:root {
    --bg-color: white;
    --accent-bg-color: #F5F5F5;
    --main-text-color: black;
    --accent-text-color: white;
    --accent-color: #4682B4;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-bg-color); 
    border-radius: 7.5px;
}

.title-style,
.paragraph-text-style,
.error-container,
.input-style,
.btn-style {
    font-family: "Urbanist";
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
}

.title-style {
    color: var(--main-text-color);
    font-weight: 900;
    font-size: 50px;
    line-height: 60px;
}

.paragraph-text-style {
    color: var(--main-text-color);
}

.btn-style {
    width: 250px;
    height: 50px;
    color: var(--main-text-color);
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 15px;
    line-height: 18px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.error-container {
    margin-top: 25px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 50px;
    width: 350px;
    color: var(--main-text-color);
    background: var(--accent-bg-color);
    text-align: center;
    align-items: center;
    border-radius: 10px;
}

.input-style {
    margin-top: 5px;
    margin-bottom: 15px;
    padding: 15px;
    height: 20px;
    color: #737373;
    background-color: var(--accent-bg-color);
    border: none;
    border-radius: 10px;
    filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.1));
}

.login-section {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px; 
    display: grid;
    grid-template-columns: 1fr;
}

.grecaptcha-badge {
    display: none;
}