#custom-signup-popup {
    position: fixed;
    background: #0000002e;
    display: none;
    z-index: 1000;
    width: 100%;
    top: 0;
    height: 100vh;
    align-items: center;
    justify-content: center;
}
.custom-popup-content {
    text-align: center;
	background-color: #fff !important;
	width: 50%;
	border-radius: 8px;
}
@media screen and (min-width: 1025px) {
    .custom-popup-content {
        width: 50%; /* Desktop view */
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .custom-popup-content {
        width: 80%; /* Tablet view */
    }
}

@media screen and (max-width: 767px) {
    .custom-popup-content {
        width: 90%; /* Mobile view */
    }
	.custom-popup-content h1{
		font-size: 22px;
		line-height:32px;
	}
	.custom-popup-content h3{
		font-size: 22px;
		margin: 10px 0px;
	}
}

.custom-popup-content h1 {
    margin: 0px;
    background-image: linear-gradient(to right, #100024, #481B7E);
    padding: 10px;
    font-size: 32px !important;
	font-size:42px !important
    text-align: center;
	color: #fff !important;
	border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
h1 i{
	color: #fff;
}
.popup-points {
    padding: 0px 30px 30px 30px;
	text-align: left;
}
.popup-message {
    padding: 20px;
}
.popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
	text-align: center;
}
i.fa-solid.fa-circle-check {
    color: #00bb00;
}
i.fa-solid.fa-folder {
    color: #ffa100;
}
i.fa-solid.fa-triangle-exclamation {
    color: #f00000;
}
i.fa-solid.fa-pen-to-square {
    color: #005cff;
}
i.fa-solid.fa-key {
    color: #7a25df;
}
button#resend-verification, .login {
    background-image: linear-gradient(to right, #100024, #481B7E);
    padding: 10px 20px;
    border-radius: 6px;
}
button#resend-verification i, .login i{
	color: #fff;
}

button#close-popup {
    background: transparent;
    border: 2px solid #000;
    color: #000 !important;
	border-radius: 6px;
}
button#close-popup i{
	color: #000;
}
a.login {
    color: #fff !important;
}
a.login:hover{
	color: #fff !important;
}
button {
    font-size: 18px !important;
}
p#popup-message {
    text-align: center;
    margin-top: 30px !important;
    margin-bottom: 0px;
}
