* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: #070707;
    background-image: 
        linear-gradient(to right, rgba(248, 246, 246, 0.2) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(242, 239, 239, 0.2) 1px, transparent 1px);
    background-size: 100px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.form-container {
    background: white;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 700px;
    width: 100%;
    z-index: 2;
    position: relative;
    color: black;
}

h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: black;
    text-align: center;
    text-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

input, textarea, select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 50px; 
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: black;
}

input:focus, textarea:focus, select:focus {
    border-color: #3498db;
    box-shadow: 0 0 8px rgba(52, 152, 219, 0.4);
    outline: none;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

select {
    background-color: white;
    color: black;
    border: 1px solid #ddd;
    border-radius: 50px; 
    padding: 10px;
    font-size: 14px;
    appearance: none;
    cursor: pointer;
}

option {
    background-color: white;
    color: black;
}

label {
    margin-bottom: 8px;
    font-size: 14px;
    color: black;
}

.btn {
    background-color: #3498db;
    color: black;
    border: none;
    padding: 15px;
    border-radius: 50px; 
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 100%;
}

.btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(41, 128, 185, 0.4);
}

p {
    font-size: 14px;
    color: black;
    text-align: center;
    margin-top: 15px;
    line-height: 1.5;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.container {
    background: black;
    border: 0.1px solid white;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    height: auto;
    aspect-ratio: 1;
    margin: auto;
}