@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700);

body {
    font-family: "Open Sans";
    background: url(../img/umpri-bg.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-container {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    position: relative;
}

.form-container img {
    width: 80px;
    display: block;
    margin: 0 auto 20px;
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-control {
    border-radius: 20px;
    border: 1px solid #2b3990;
    padding-right: 40px;
}

.show-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

/* Captcha Section */
.captcha-title {
    font-size: 18px;
    color: #2b3990;
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
}

.captcha-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2b3990;
    padding: 10px;
    border-radius: 10px;
    color: white;
    margin-bottom: 15px;
}

.captcha-section p {
    margin: 0;
    width: 100%;
    text-align: center;
}

.captcha-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.captcha-input {
    border-radius: 20px;
    border: 1px solid #ffffff;
    color: #2b3990;
    padding: 10px;
    width: 25%;
    text-align: center;
}

.btn-container {
    display: flex;
    justify-content: space-between;
}

.btn {
    width: 48%;
    border-radius: 20px;
}

.logo {
    width: 100px;
    display: block;
    margin: 0 auto 20px;
}

@media (max-width: 600px) {
    .btn-container {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}
