/*
    Vodafone fonts
 */
@font-face {
    font-family: vodafone-regular;
    src: url(/fonts/VodafoneRg-Regular.ttf);
    font-weight: normal;
}

@font-face {
    font-family: vodafone-bold;
    src: url(/fonts/VodafoneRg-Bold.ttf);
    font-weight: bold;
}

* {
    margin: 0;
    padding: 0;
    color: #FFFFFF;
    font-family: vodafone-regular, "Noto Sans", sans-serif;
}

/*
    Background
 */
body {
    background-image: url(/images/login_background.png);
    background-position: top left;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
}

/*
    Vodafone Logo
 */
.loginlogo {
    position: absolute;
    top: 5%;
    left: 5%;
}
.loginlogo img {
    width: 20%;
    height: 20%;
}

/*
    Welcome Message
 */
.welcome {
    position: absolute;
    top: calc(50% - 60px);
    left: 5%;
    font-size: x-large;
}

.product-name {
    font-weight: bold;
    font-size: xx-large
}

.flexcolumn {
    position: absolute;
    top: 60%;
    width: 20%;
    display: flex;
    flex-direction: column;
}

/*
    Login form
 */
.login-form {
    left: 5%;
    height: 20%;
}
.form-group {
    flex: 0 0 33%;
}
.form-group input {
    margin-bottom: 5px;
}
.form-group .form-control {
    color: #4a4d4e;
    width: 100%;
    border-radius: 2px;
    padding: 5px;
}
.form-group .submit {
    width: calc(100% + 14px);
    background-color: #4a4d4e;
    padding: 5px;
    border-radius: 2px;
    border-color: #4a4d4e;
    cursor: pointer;
}
.form-group .submit:hover {
    background-color: #333333;
    border-color: #333333;
}
#feedback {
    font-size: small;
}
#feedback .feedbackPanel {
    list-style-position: inside;
    list-style-image: unset;
    list-style-type: none;
}
/*
    Disclaimer Text
 */
.disclaimer {
    left: 30%;
    top: 57%;
}
.disclaimer-checkbox {
    top: 105%;
    width: 100%;
    display: inline-block;
}
/*
    footer
 */
.voipfuture {
    position: absolute;
    top: 90%;
    right: 5%;
}

/*
   2FA Modal window
 */
div.wicket-modal,
div.wicket-modal div.w_caption *,
div.wicket-modal div.w_content * {
    color: #4a4d4e;
}

div.wicket-modal div.w_content div div,
div.wicket-modal div.w_content form {
    /*height: 100%;*/
}
div.wicket-modal div.w_caption {
    background-color: var(--vodafone-red);
    padding: 3px;
}
div.wicket-modal div.w_caption h3{
    color: #fff;
}
div.wicket-modal div.w_content form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 5%;
    text-align: left;
}
div.wicket-modal div.w_content form .code {
    border-radius: 2px;
    padding: 5px;
    width: 75%;
    text-align: center;
    margin-bottom: 5px;
}
div.wicket-modal div.w_content form .submit {
    color:  white;
    width: calc(75% + 14px);
    background-color: #4a4d4e;
    padding: 5px;
    border-radius: 2px;
    border-color: #4a4d4e;
    cursor: pointer;
}
/* hide the up down buttons for numeric inputs which comes with modern browsers */
div.wicket-modal div.w_content form input.code::-webkit-outer-spin-button,
div.wicket-modal div.w_content form input.code::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
    display: none;
}
div.wicket-modal div.w_content form input.code[type=number] {
    -moz-appearance: textfield;
}
