@import url("https://fonts.googleapis.com/css?family=Ubuntu:400,500,700&display=swap"); :root {
    --overlay-bg: #58af9b;
    --text-color: #ffffff;
    --btn-bg: #58af9b;
}

#dscenter-v2-wrapper {
    display: flex;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    font-family: Ubuntu, sans-serif;
}

.v2-column-form {
    width: 50%;
    background: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 80px;
    position: relative;
    z-index: 20;
}

.v2-column-branding {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    position: relative;
    z-index: 10;
}

.v2-logo-container {
    margin-bottom: 20px;
    text-align: center;
}

.v2-logo-container img {
    max-width: 160px;
    height: auto;
    display: block;
    margin: 0px auto;
}

.v2-form-title {
    font-size: 130%;
    font-weight: bold;
    color: rgb(51, 51, 51);
    margin-bottom: 10px;
    text-align: center;
}

.v2-form-subtitle {
    font-size: 120%;
    color: rgb(119, 119, 119);
    margin-bottom: 40px;
    text-align: center;
}

.v2-input-group {
    margin-bottom: 20px;
}

.v2-input-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: rgb(51, 51, 51);
}

.v2-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgb(221, 221, 221);
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.v2-input:focus {
    border-color: var(--btn-bg);
    outline: none;
}

.v2-btn-submit {
    width: 100%;
    padding: 12px;
    background-color: var(--btn-bg);
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s;
}

.v2-btn-submit:hover {
    opacity: 0.9;
}

.v2-branding-title {
    color: var(--text-color);
    font-size: 36px;
    margin-bottom: 20px;
}

.v2-branding-text {
    color: var(--text-color);
    font-size: 22px;
    opacity: 0.9;
}

.v2-branding-icon {
    font-size: 80px;
    color: var(--text-color);
    margin-bottom: 20px;
}

.v2-logo {
    margin-bottom: 30px;
    max-width: 160px;
}

.v2-extra-links {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 14px;
    margin-bottom: 20px;
    align-items: center;
}

.v2-extra-links a {
    color: rgb(119, 119, 119);
    text-decoration: none;
}

.v2-extra-links a:hover {
    color: var(--btn-bg);
}

.v2-checkbox {
    margin: 0px;
}

.v2-register-link-container {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
}

.v2-register-link {
    color: var(--btn-bg);
    font-weight: bold;
}

.checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"], .radio input[type="radio"], .radio-inline input[type="radio"] {
    position: absolute;
    margin-top: 4px\9;
    margin-left: 0; /* Override default -20px */
}

.v2-hidden {
    display: none !important;
}

.v2-form-wrapper {
    transition: 0.3s ease-in-out;
}

.zoom-out-active {
    transform: scale(0.8);
    opacity: 0;
    pointer-events: none;
}

.zoom-in-start {
    transform: scale(1.2);
    opacity: 0;
}

.zoom-in-active {
    transform: scale(1);
    opacity: 1;
}

.v2-mobile-toggle {
    display: flex;
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--btn-bg);
    color: rgb(255, 255, 255);
    border: none;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 10px;
    z-index: 100;
    cursor: pointer;
    font-size: 24px;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background-color 0.3s;
}

.v2-mobile-toggle:hover {
    transform: scale(1.1);
}

.v2-mobile-toggle:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    #dscenter-v2-wrapper {
        flex-direction: column;
        overflow-y: auto;
    }

    .v2-column-form {
        width: 100%;
        padding: 60px 20px 40px;
        order: 2;
        min-height: 100vh;
        justify-content: flex-start;
    }

    .v2-column-branding {
        display: none !important;
    }

    .v2-form-title {
        font-size: 20px;
    }

    .v2-form-subtitle {
        font-size: 11px;
    }
}
