body {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent 0px,
        transparent 100px,
        rgba(0, 0, 0, 0.03) 100px,
        rgba(0, 0, 0, 0.03) 200px
    );
    z-index: 0;
    pointer-events: none;
}

.logo {
    height: 50px;
    width: auto;
}

.form-container {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.login-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-control {
    border-radius: 10px;
    padding: 8px;
    border: 2px solid #eee;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #6610f2;
    box-shadow: 0 0 0 0.2rem rgba(102, 16, 242, 0.1);
}

.btn-primary {
    background: linear-gradient(45deg, #6610f2, #7952b3);
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 16, 242, 0.3);
}

.navbar {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.footer {
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.05);
}

.form-label {
    font-weight: 500;
    color: #444;
    margin-bottom: 8px;
}

.login-title {
    color: #2d2d2d;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.input-group-text {
    background: transparent;
    border: 2px solid #eee;
    border-right: none;
}

.watermark {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 100px;
    padding: 50px;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    transform: rotate(-45deg);
}

.watermark span {
    font-size: 4vw;
    color: rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    font-weight: bold;
}

.btn-instructions {
    position: fixed;
    right: -96px;
    top: 50%;
    transform-origin: center;
    transform: translateY(-50%) rotate(-90deg);
    z-index: 100;
    background: #6610f2;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 10px 10px 0 0;
    font-weight: 500;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 230px;
    text-align: center;
}

.btn-instructions:hover {
    background: #8338f5;
    right: -95px;
    color: white;
}

.btn-instructions:focus {
    box-shadow: none;
    color: white;
}

.instruction-list {
    padding-left: 20px;
}

.instruction-list li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.instruction-section {
    margin-bottom: 30px;
}

.instruction-section h5 {
    color: #6610f2;
    margin-bottom: 15px;
    border-bottom: 2px solid #6610f2;
    padding-bottom: 8px;
}

small {
    font-size: 12px;
}

/* Instructions Page Specific Styles */
.instructions-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    max-width: 900px;
    height: calc(100vh - 230px);
    position: relative;
    z-index: 1;
}

.instructions-scroll {
    height: 100%;
    overflow-y: auto;
    padding: 2rem;
}

.instructions-scroll::-webkit-scrollbar {
    width: 8px;
}

.instructions-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.instructions-scroll::-webkit-scrollbar-thumb {
    background: #6610f2;
    border-radius: 4px;
}

.instructions-scroll::-webkit-scrollbar-thumb:hover {
    background: #8338f5;
}

.start-exam-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem;
    text-align: center;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.btn-start-exam {
    background: linear-gradient(45deg, #6610f2, #7952b3);
    border: none;
    border-radius: 10px;
    padding: 15px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    color: white;
    font-size: 1.1rem;
}

.btn-start-exam:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 16, 242, 0.3);
    background: linear-gradient(45deg, #7952b3, #6610f2);
    color: white;
}

.profile-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    height: calc(100vh - 230px);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #6610f2;
    padding: 3px;
    margin: 1rem auto;
    display: block;
}

.profile-details {
    padding: 1.5rem;
    height: 100%;
    overflow-y: auto;
}

.profile-details::-webkit-scrollbar {
    width: 8px;
}

.profile-details::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.profile-details::-webkit-scrollbar-thumb {
    background: #6610f2;
    border-radius: 4px;
}

.profile-details::-webkit-scrollbar-thumb:hover {
    background: #8338f5;
}

.profile-details h4 {
    color: #2d2d2d;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

.profile-info-item {
    padding: 0.5rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
}

.profile-info-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    min-width: 100px;
    margin-right: 0.5rem;
}

.profile-info-value {
    color: #2d2d2d;
    font-weight: 600;
    font-size: 0.9rem;
    word-break: break-word;
    flex: 1;
}
.profile-info-label::after {
    content: ":";
    margin-left: 2px;
}
ul{
    margin-bottom: 0px;
}
ul li{
    list-style: none;
}