* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.divw {
    background-image: url("../images/backgrundlogin.jpg");
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial;

}

.roledropcontainer {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 600px;
}

.heading {
    text-align: center;
    margin-bottom: 30px;
}

.heading h2 {
    font-size: 2rem;
    color: #333;
}

.selectsection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.section {
    background-color: #fff;
    border: 1px solid black;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.section:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: darkblue; /* light purple */
    border-color: blueviolet;
    color: #fff;
 
}

.section.active {
    background-color: #f3e8ff;
    border-color: blueviolet;
    color: blueviolet;
}

.btn-welcome-wrep {
    text-align: center;
    margin-top: 30px;
}

.btn-welcome {
    width: 100%;
    background-color: darkblue;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

/* .btn-welcome:hover {
    background-color: #5e35b1;
} */

.error-message {
    color: red;
    text-align: center;
    margin-top: 10px;
}

@media (max-width: 600px) {
    .selectsection {
        grid-template-columns: 1fr;
    }

    .btn-welcome {
        width: 100%;
    }
}

.highlight-section {
    border: 2px solid blueviolet;
    background-color: darkblue;
    color: #fff;
}
