61 lines
967 B
CSS
61 lines
967 B
CSS
.custom-bg {
|
|
background-image: url('./assets/bg/bg_2.jpg') !important;
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.signup-bg {
|
|
background-image: url('./assets/bg/signup_bg.jpg') !important;
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.register{
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.border-radius-10 {
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.login-links{
|
|
margin-top: 50px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
}
|
|
|
|
.login-links a {
|
|
font-size: 14px;
|
|
padding: 0px 20px;
|
|
border-right: 2px solid #6c757d;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.login-links a:nth-of-type(1){
|
|
padding-left: 0px;
|
|
}
|
|
|
|
.login-links a:last-child{
|
|
border: 0px;
|
|
}
|
|
|
|
button{
|
|
font-size: 1rem!important;
|
|
font-weight: 700!important;
|
|
}
|
|
|
|
.font-600 {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.accordion-button, .accordion-button:not(.collapsed) {
|
|
background-color: transparent!important;
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
.modal-50 {
|
|
min-width: 50%;
|
|
max-width: 50%;
|
|
}
|
|
} |