
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

/* Global reset */
* {
    box-sizing: border-box;
}

/* Body + background */
body {
    margin: 2rem;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-size: small;
    background-color: rgba(107, 246, 250, 0.15);
    
    /* Background image styles */
    /*background-image: url("../images/bagground_final.png");*/
    background-size: cover;        /* Ensures image fills screen */
    background-position: center;   /* Keeps it centered */
    background-repeat: no-repeat;  /* Prevents tiling */
    background-attachment: fixed;  /* Makes it static when scrolling (optional) */
}
.top-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}
.bottom-section {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    bottom: 0px;
}

/* Logo (applies to the image with class="logo") */
.logo {
    display: flex;
    width: clamp(120px, 18vw, 320px); /* responsive, min 80px, max 220px */
    height: auto;
}


/* Header */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1px;
    
    
    margin-top: auto;
    margin-bottom: 2rem;
    margin-left: 10%;
    margin-right: 10%; 
    
    
   
    
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    background: rgba(107, 246, 250, 0.25);
    border: 1px solid rgba(107, 246, 250, 0.25);
    border-radius: 25px;
    
}

.agreement-box {
    background: rgba(107, 246, 250, 0.25);
    font-size: large;
    border-radius: 25px;
    border: 1px solid rgba(107, 246, 250, 0.25);
    padding: 1rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

textarea {
    width: 100%;
    height: 200px;
    border: 1px solid #ccc;
    border-radius: 25px;
    padding: 10px;
    resize: none;
    background: #f5f5f5;
    
}

.form-section {
    margin-top: 1rem;
    font-size: medium;
    border-radius: 25px;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 8px;
    border-radius: 25px;
    border: 1px solid #ccc;
    margin-bottom: 1rem;
}

.checkbox {
    
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    
}

.checkbox input {
    display: flex;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

button {
    display: inline-flex;
    align-items: center;
    background-color: #25c7eb;
    color: #000000;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 1rem;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    color: #ffffff;
}
.highlightedText {
    font-size: large;
    color: #000000; 
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.confirmation-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

}
.bagjumpIcon {
    
    width: 70%;
    height: auto;

}
textarea {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    padding: 1rem;
    font-size: large;
    resize: none;
}
.agreement-text {

 
    font-size: medium;
    background-color: #ffffff;
    border-radius: 25px;
    padding: 1rem;

}
.city-postcode {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 10px;
}
