

    #imagePreview {
        width: 200px;
        height: 200px;
        border: 1px solid #ccc;
        margin-top: 10px;
        background-size: cover;
        background-position: center;
    }

    body {
        background: url('https://i.pinimg.com/originals/29/a7/c4/29a7c42277c305a04f33ebedae44a420.jpg') no-repeat center center fixed;
        background-size: cover;
    }

    .header {
        text-align: center;
        margin-top: 10px;
    }

    .logo {
        width: 74px;
        height: 80px;
        position: absolute;
        top: 10px;
        left: 10px;
    }

    .seal {
        width: 150px;
        height: 93px;
        position: absolute;
        top: 20px;
        right: 10px;
    }

    .university-name {
        font-size: 14pt;
        font-weight: bold;
    }

    .institute {
        font-size: 10pt;
    }

    .divider {
        width: 100%;
        height: 2px;
        background-color: #000;
        margin: 10px 0;
    }

    .custom-select-wrapper {
        position: relative;
        display: inline-block;
        width: 100%;
    }

    .custom-select {
        display: block;
        width: 100%;
        padding: 0.375rem 2.25rem 0.375rem 0.75rem;
        line-height: 1.5;
        color: #495057;
        background-color: #fff;
        background-clip: padding-box;
        border: 1px solid #ced4da;
        border-radius: 0.25rem;
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }

    .custom-select:disabled {
        background-color: #e9ecef;
    }

    .custom-select::-ms-expand {
        background-color: transparent;
        border: 0;
    }

    .custom-select-wrapper::after {
        content: '\25BC';
        position: absolute;
        top: 50%;
        right: 0.75rem;
        transform: translateY(-50%);
        pointer-events: none;
    }

