* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.overlay-text {
   
   padding: 25px;
    color: white;
}

.overlay-text h2 {
    margin: 0;
    font-size: 22px;
}

.overlay-text span {
    color: #f9c841;
}

.overlay-text p {
    margin: 5px 0 0;
    font-size: 14px;
}
.error-message {
    color: red;
    font-size: 13px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.top-banner {
    background-image: linear-gradient(rgb(13 112 116 / 80%), rgba(13, 29, 116, 0.8)), url(../../images/login_banner2.jpg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 270px;
    overflow: hidden;
    border-bottom-right-radius: 70px;
}
body, html {
    font-family: 'Poppins', sans-serif;
    background: #f7f8fc;
    height: 100%;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.login-wrapper {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    margin: auto;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
}

.form-card {
    padding: 30px 20px 50px;
    border-radius: 20px;
    position: relative;
}

.tabs {
    display: flex;
    justify-content: space-around;
    font-weight: 600;
    margin-bottom: 20px;
}

.tabs span {
    color: #bbb;
    padding-bottom: 4px;
}

.tabs .active {
    color: #000;
    border-bottom: 2px solid #f9c841;
}
.input-wrap select {
    border: 1px solid #ccc;
    border-radius: 30px;
    padding: 10px 20px;
    width: 100%;
    font-size: 16px;
    background-color: #fff;
    color: #333;
    outline-color: #f9c841;
}

.input-wrap {
    display: flex;
    align-items: center;
    background: #f4f4f4;
    border-radius: 30px;
    margin-bottom: 15px;
    padding: 2px 15px;
    border: 1px solid #ddd;
}
.input-wrap:focus-within {
    border-color: #f9c841;
    box-shadow: 0 0 5px #f9c841;
}

.input-wrap .icon {
    margin-right: 10px;
    color: #aaa;
}

.input-wrap input,
.input-wrap select {
    border: none;
    background: transparent;
    outline: none;
    flex: 1;
    font-size: 15px;
    padding: 8px;
}

/* Submit Button */
.submit-container {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.submit-container button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e65c00, #ffa500);
    border: none;
    color: white;
    font-size: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
