@charset "utf-8";
/* CSS Document */

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

h1 {
    font-size: 42px; /* Bigger title */
    font-weight: 600;
    color: #d147a3; /* Cute pink */
    margin-bottom: 25px; /* Reduce space below heading */
}

p {
    font-size: 18px;
    color: #d147a3; /* Same pink as heading */
    margin: 5px 0; /* Bring them closer together */
    font-weight: 500;
}

body {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    background-color: #FFDCF5;
    margin: 0;
    padding: 20px;
}

form {
    background: white;
    width: 70%;
    max-width: 800px;
    margin: 40px auto;
    padding: 25px;
    border: 3px solid #DE00A3;
    border-radius: 15px;
    box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.15);
    text-align: left;
}

label {
    font-weight: bold;
    display: block;
    margin-top: 12px;
    font-size: 16px;
    color: #d147a3;
}

input[type="text"] {
    width: 95%;
    padding: 10px;
    margin-top: 5px;
    border: 2px solid #FF82C4;
    border-radius: 8px;
    font-size: 14px;
}

input[type="submit"] {
    background-color: #DE00A3;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    display: block;
    margin: 20px auto 0;
    font-weight: bold;
    margin-bottom: 20px;
}

input[type="submit"]:hover {
    background-color: #97006F;
}

a {
    display: inline-block;
    margin-top: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    color: #d147a3; 
}

a:hover {
    color: #97006F;
}
