.text {
    font-family: 'Roboto Slab', serif;
    font-size: 24px;
    padding: 0px 400px;
    text-align: center;
}

.main-logo {
    padding: 100px;
    width: 40%;
    margin: 0 auto;
    display: block;
}

.sign-in {
    padding: 0px 200px;
}

.center {
    display: block;
    margin: 0 auto;
}

.space-bottom {
    margin-bottom: 100px;
}

.error-message {
    color: red;
    font-size: 24px;
    font-weight: bold;
}

.success-message {
    color: green;
    font-size: 24px;
    font-weight: bold;
}

.send-button {
    background: #000;
    font-size: 24px;
    font-family: 'Roboto Slab', serif;
    color: #FFF;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 5px;
    margin: 0px 15px 0px 0px;
    border: none;
}

.language-display {
    display: none;
}

.language-box {
    display: flex;
    justify-content: center;
}

.language-box a {
    background: #000;
    font-size: 24px;
    font-family: 'Roboto Slab', serif;
    color: #FFF;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 5px;
    margin: 0px 15px;
}


/*Radio Buttons*/

.input-field > label.radio-container {
    position: relative;
}

.radio-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
  cursor: pointer;
}

.radio-container:hover input ~ .checkmark {
  background-color: #ccc;
}

.radio-container input:checked ~ .checkmark {
  background-color: #003;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.radio-container input:checked ~ .checkmark:after {
  display: block;
}

.radio-container .checkmark:after {
 	top: 8px;
	left: 8px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: white;
}

.change-year-she,
.change-apprenticeship-she,
#agb-box{
    display: none;
}

/*AGB*/
#agb-close {
    position: fixed;
    right: 30%;
    background: #000;
    color: #FFF;
    font-weight: bold;
    font-size: 20px;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.h2-agb {
    font-size: 30px;
    font-weight: bold;
    font-family: 'Roboto Slab', serif;
}

.h3-agb {
    font-size: 24px;
    font-weight: bold;
    font-family: 'Roboto Slab', serif;
}

.agb-text p {
    font-family: 'Roboto Slab', serif;
    font-size: 18px;
    padding-right: 30px;
}

/*Checkbox*/
.space-top {
    margin-top: 30px !important;
}


@media only screen and (max-width: 1600px) {  

    .text {
        padding: 0px 200px;
    }

}

@media only screen and (max-width: 1000px) {  

    .text {
        padding: 0px 100px;
        font-size: 20px;
    }

}

@media only screen and (max-width: 992px) {  

    #agb-close {
        right: 6%;
    }

}



@media only screen and (max-width: 768px) {  

    .main-logo {
        padding: 30px 0px;
        width: 75%;
    }
    .error-message, .success-message {
        font-size: 17px;
        padding: 0px 15px;
    }

    .text {
        padding: 0px 15px;
        font-size: 18px;
    }
    
    .language-box a,
    .send-button {
        font-size: 18px;
    }
    
    .language-box {
        display: block;
        text-align: center;
    }
    
    .language-box a {
        line-height: 3;
    }
    
    .h2-agb {
        font-size: 24px;
    }
    
    .h3-agb {
        font-size: 20px;
    }
    
    .agb-text p {
        font-size: 16px;
    }
    
    #agb-close {
        right: 1%;
    }
}



