body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #71b7e6, #9b59b6);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    margin: 0;
    color: #333;
}
.btn{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.portal-container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
}

.portal-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
}
.card-head{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.logo{
    width: 100px;
    border-radius: 10px;
}

h1 {
    color: #333;
    margin-bottom: 10px;
}

p {
    color: #666;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
    font-size: 16px;
}

button {
    background: #9b59b6;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    transition: background 0.3s ease;
}

button:hover {
    background: #8e44ad;
}

.result-container {
    margin-top: 20px;
    padding: 15px;
    background: #f1f1f1;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.unique-id-display {
    font-weight: bold;
    color: #333;
    word-wrap: break-word;
    font-size: 14px;
}
.page-header{
    width: 100%;
    text-align: center;
}
.head-title h2, .head-title h3{
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    text-transform: uppercase;
}


.head-title{
    margin-top: 30px;
}

.loader {
    border: 4px solid #f3f3f3; /* Light grey base border */
    border-top: 4px solid #3498db; /* Blue top border (the part that "spins") */
    border-radius: 50%; /* Makes the div a circle */
    width: 10px;
    height: 10px;
    animation: spin 2s linear infinite; /* Apply the animation */
    display: none;
}

.my-caption p, .my-caption h4{
    margin: 5px !important;
}

.checkbox-group{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    margin-top: 25px;
}

.checkbox-group label{
    font-weight: bold;
    font-size: 18px;
    margin: 0;
}

.checkbox-group input{
    border: 1px solid #ccc;
    height: 20px;
    width: 20px;
}

/* Keyframes for the rotation animation */
@keyframes spin {
    0% {
        transform: rotate(0deg); /* Start at 0 degrees */
    }
    100% {
        transform: rotate(360deg); /* Rotate a full 360 degrees */
    }
}