*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Laila', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body{
    display: flex;
    height: 100vh;
    justify-content: space-between;
    flex-direction: column;
    background: linear-gradient(135deg, #6ee7b7, #3b82f6, #9333ea); /* Soft and dynamic gradient */
    background-size: cover;
    background-blend-mode: lighten;
    background-position: center;
    position: relative;
    overflow-x: hidden;
}

.container{
    width: 100%;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.8); /* Light background with transparency */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    margin-bottom: 50px;
    z-index: 1;
}

.container__form-title{
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #4a4a4a; /* Darker text for better readability */
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    font-family: 'Laila', sans-serif;
}

.important-info {
    background: rgba(0, 0, 0, 0.6);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    color: white;
    border-left: 4px solid #ff5722;
}

.important-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.important-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.important-info a {
    color: #077ff7;
    text-decoration: underline;
}

.section {
    margin-bottom: 15px;
}

.container__btn{
    width: 100%;
    padding: 15px;
    font-size: 20px;
    border: none;
    border-radius: 10px;
    color: rgb(255, 255, 255);
    background: #9333ea;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    font-weight: 700;
}

.container__btn:hover{
    background: #6200ea;
    color: rgba(255, 255, 255, 0.8);
}

footer {
    background: #222;
    padding: 30px 0;
    color: white;
    z-index: 2;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.footer-col {
    flex: 1;
    padding: 20px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-col ul {
    list-style: none;
    padding-left: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #4CAF50;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #4CAF50;
}

/* Graffiti Effects for Sporty Feel */
.graffiti {
    position: absolute;
    top: 10%;
    left: 15%;
    z-index: -1;
    font-family: 'Laila', sans-serif;
    color: rgba(255, 255, 255, 0.5);
    font-size: 120px;
    font-weight: bold;
    transform: rotate(-30deg);
    opacity: 0.7;
}

.graffiti-2 {
    position: absolute;
    top: 60%;
    right: 5%;
    z-index: -1;
    font-family: 'Laila', sans-serif;
    color: rgba(255, 255, 255, 0.5);
    font-size: 130px;
    font-weight: bold;
    transform: rotate(30deg);
    opacity: 0.8;
}

.sporty-icons {
    position: absolute;
    top: 40%;
    left: 50%;
    z-index: -1;
    font-size: 90px;
    color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
}

.sporty-icons i {
    margin: 10px;
}
