.reg-log-section {
    margin: 30px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reg-log-container {
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 480px;
}

.reg-log-header {
    text-align: center;
    color: #000;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 700;
}

.reg-log-input-group {
    margin-bottom: 10px;
}

.reg-log-label {
    margin-bottom: 5px;
    font-size: 14px;
    color: #333;
    display: block;
}

.reg-log-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.reg-log-checkbox {
    margin-right: 10px;
    accent-color: #eb2129;
}

.agree {
    font-size: 12px;
}

.highlight-link {
    color: #04843c;
    text-decoration: none;
}

.highlight-link:hover {
    text-decoration: underline;
}

.reg-log-button {
    width: 100%;
    padding: 10px;
    background-color: #04843c;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
}

.reg-log-button:hover {
    background-color: #036d31;
}

.reg-log-text {
    text-align: center;
    margin-top: 20px;
}

.reg-log-text a {
    color: #eb2129;
    text-decoration: none;
    font-weight: 700;
}

.reg-log-text a:hover {
    text-decoration: underline;
}

.remember-forget-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.bold {
    font-weight: 700;
}

@media screen and (max-width: 380px) {
    .remember-forget-container {
        flex-direction: column;
        gap: 10px;
    }

}