
body{
	font-family: 'Quicksand', sans-serif;
} 

.title{
	font-size: 40px;  
	text-align: center; 
	color: #000;
	font-weight: 500;
	padding: 0 30px 30px 30px;
	margin: 0;
}

.form-container{
	padding: 0 80px;
}

.repository-type-container{
	display: flex;
	flex-direction: row;
	gap: 20px;
	margin-top: 0 !important;
}

.repository-type-title{
	margin: 0 !important;
}

.help-container{
		width: 100%;
		text-align: end;
		padding: 20px 90px 0 0;
}

button {
    width: 150px;
    border-radius: 10px;
    border: none;
    background-color: #26A69A;
    color: #FFF;
    font-weight: 700;
    font-size: 18px;
}
button:hover{
	background-color: #2BBBAD;
	cursor: pointer;
}
.button-container{
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

/* toast colors */
.toast.success {
	background-color: #198754;
	color: white;
}
.toast.error {
	background-color: #DC3545; 
	color: white;
}
.toast.info {
	background-color: #0D6EFD; 
	color: white;
}

#spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    display: none;
}
.spinner-layer.custom-spinner .circle {
    border-color: #26A69A;
}
.fa-circle-question{
	color: #26A69A;
	font-size: 30px;
}
.fa-circle-question:hover{
	color: #2BBBAD;
	cursor: pointer;
}
.modal-content{
	padding-bottom: 0 !important;
}
.row-text-area{
	margin-bottom: 0 !important;
}
.btn-flat:hover{
	background-color: #26A69A;
	color: #FFF;
}
.suggestions-actions{
	margin-top: 0;
	gap: 20px
}

.modal-footer .button-container button{
	box-shadow: none;
}

/* Media queries */

@media (max-width: 600px) {
	.form-container{
		padding: 0 20px;
	}
	.help-container{
		padding: 20px 20px 0 0;
	}
	.title{
		font-size: 30px;
	}
}