Untitled

 avatar
unknown
plain_text
25 days ago
1.8 kB
3
Indexable
body {
    font-family: Arial, sans-serif;
    background-color: #0f2c1b;

    }
    .dropdown {
        position: relative;
        display: inline-block;
    }
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f9f9f9;
        min-width: 160px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
    }
    .dropdown-content label {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }
    .dropdown-content input {
        margin-right: 10px;
    }
    .dropdown:hover .dropdown-content {
        display: block;
    }
    
    .family-status-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .family-status, .family-stat {
        width: 48%;
    }
    .choices-tests-container {
        display: flex;
        justify-content: space-between;
    }
    .choices, .checkbox-group {
        width: 48%;
    }
    .highlighted {
        background-color: #B2BEB5;
        padding: 10px;
        border-radius: 5px;
    }
    .input-fields select {
        width: 100%;
    }
    #kind-of-scholar-container {
        display: none; /* Initially hide the kind of scholarship input */
    }
    #other-scholarship-container {
        display: none; /* Initially hide the other scholarship input */
    }
    .password-input {
        position: relative;
    }

    .password-toggle {
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        cursor: pointer;
        height: 50%;
    }

    .password-toggle.active {
        color: #007bff;
    }
    .password-toggle i {
        font-size: 18px;
    }
Leave a Comment