/* application.css */

body {
    position: relative; /* Gör att vi kan använda absolut positionering på pseudo-elementet */
    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: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3); /* Halvgenomskinlig vit överlagring */
    z-index: -1; /* Placera pseudo-elementet bakom innehållet */
}

.application-container {
    padding: 40px 20px;
    max-width: 800px; /* Justera max-bredden efter behov */
    margin: auto;
    text-align: center;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.application-subtitle {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    background:rgba(0, 0, 0, 0.5);
}

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

.application-input {
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
    width: 100%; /* Fyller behållaren fullt ut */
    box-sizing: border-box; /* Inkluderar padding och border i bredden */
    box-shadow: 0 0px 20px rgba(0, 0, 0, 0.3);
}

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

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

.application-submit {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    padding: 15px 30px;
    border-radius: 20px;
    font-size: 18px;
    transition: background-color 0.3s;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.8);
}

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