* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
}

/* === Title === */
.title {
    font-size: 31px;
    text-align: center;
    color: #fff;
    font-weight: 500;
    margin-top: 30px;
}

/* === Form Area === */
.form_area {
    background: linear-gradient(180deg, #4b0000 0%, #b30000 45%, #d9d9d9 100%);
    width: 100%;
    position: absolute;
    top: 182px;
    left: 0;
    height: 100vh;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    padding: 35px;
    box-shadow: 0 -5px 25px rgba(255, 0, 0, 0.2);
}

/* === Input Fields === */
.input_flex {
    position: relative;
}

input.custom_input {
    width: 100%;
    height: 50px;
    line-height: 50px;
    border-radius: 10px;
    background: #660000;
    border: 1px solid #a6a6a6;
    padding-left: 80px;
    margin: 8px 0;
    color: #fff;
    transition: all 0.3s ease;
}

input.custom_input:focus-visible {
    outline: none;
    border: 1px solid #ff3b3b;
    background: #800000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

/* === Icons === */
span.icon_face {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translate(0, -50%);
    color: #ff4d4d;
}

span.icon_face:before {
    position: absolute;
    top: -12px;
    width: 2px;
    height: 41px;
    background: linear-gradient(180deg, #ff4d4d, #d9d9d9);
    content: "";
    right: -10px;
}

.globalIcon:before {
    content: "";
    right: -24px !important;
}

.globalIcon {
    left: 30px !important;
}

/* === Button === */
.login_btn {
    background: linear-gradient(90deg, #ff3b3b 0%, #b30000 100%);
    width: 100%;
    margin-top: 50px;
    border-radius: 50px;
    font-size: 17px;
    border: none;
    padding: 16px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 0, 0, 0.3);
}

.login_btn:hover {
    background: linear-gradient(90deg, #b30000 0%, #ff4d4d 100%);
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.5);
}

/* === Account Text === */
.account_text {
    margin-top: 20px;
    text-align: center;
    color: #e6e6e6;
}

.account_text a {
    color: #ff4d4d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.account_text a:hover {
    color: #d9d9d9;
}

/* === Subtitle === */
p.title_p {
    color: #f2f2f2;
    padding: 0 60px;
    margin-top: 20px;
}