@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

/* Reset some default styles */
body,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Urbanist", serif;
}

header {
    display: flex;
    justify-content: center;
}

.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    padding-top: 60px;
}

.container {
    width: 100%;
    max-width: 400px;
    padding: 20px; /* Add padding to the card */
    background-color: #12a4a2;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    box-sizing: border-box; /* Ensure padding doesn't overflow */
}

.main_form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form_label {
    font-weight: bold;
    font-size: 14px;
    color: white;
}

input[type="text"],
input[type="email"] {
    width: 100%; /* Ensure input fields take full width */
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s;
    box-sizing: border-box; /* Include padding in width calculation */
}

input[type="text"]:focus,
input[type="email"]:focus {
    border-color: black;
}

button {
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #f37926;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

h1 {
    color: white;
    font-size: 26px;
    text-align: center;
    font-weight: bold;
}

.message {
    color: white;
    text-align: center;
}

.back-link {
    text-decoration: none;
    display: inline-block;
    padding: 10px;
    background-color: #f37926;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* Responsive design for smaller screens */
@media (max-width: 600px) {
    .container {
        padding: 14px;
        margin: 20px;
    }

    input[type="text"],
    input[type="email"],
    button {
        font-size: 14px;
    }
}
