/* application.css */

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    background: url('contact.jpg') no-repeat center center fixed; 
    background-size: cover;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    z-index: -1;
}

.application-container {
    padding: 20px;
    max-width: 100%;
    margin: auto;
    text-align: center;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.application-title {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 10px;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
}

.application-subtitle {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
}

.application-form {
    background-color: #eaeaff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0px 20px rgba(0, 0, 0, 0.5);
}

.form-group {
    margin-bottom: 15px;
}

.application-input,
select.application-input {
    padding: 12px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
}

.application-checkbox {
    display: flex;
    align-items: center;
    margin-top: 10px;
    font-size: 14px;
}

.application-checkbox input {
    margin-right: 10px;
}

.application-submit {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    padding: 12px 24px;
    border-radius: 20px;
    font-size: 16px;
    transition: background-color 0.3s;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    width: 100%;
    margin-top: 20px;
}

.application-submit:hover {
    background-color: #0056b3;
}

.tooltip {
    position: relative;
    display: inline-block;
    margin-left: 5px;
    cursor: pointer;
}

.tooltip-text {
    visibility: hidden;
    width: 200px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.note {
    font-size: 12px;
    color: #666;
}

@media (min-width: 768px) {
    .application-container {
        padding: 40px 20px;
        max-width: 800px;
    }

    .application-title {
        font-size: 26px;
    }

    .application-subtitle {
        font-size: 1.2rem;
    }

    .application-form {
        padding: 30px;
    }

    .application-input,
    select.application-input {
        padding: 15px;
        margin: 10px 0;
    }

    .application-submit {
        padding: 15px 30px;
        font-size: 18px;
        width: auto;
    }

    .application-checkbox {
        font-size: 16px;
    }
}