
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

body {
    font-family: "Source Sans 3", serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: start;
    height: 100vh;
    background-color: #f5f5f5;

}

.container {
    width: 90%;
    max-width: 400px;
    background: white;
    padding: 20px;
    margin-top: 20vh;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(139, 127, 232, 0.1);
    text-align: center;
}

h1 {
    text-align: center;
    margin: 0px;
}

img {
    max-width: 100px;
}

input {
    width: 95%;
    padding: 10px;
    margin: 10px 0;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #01AEEF;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background: #337AB7;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

a {
    display: block;
    margin-top: 10px;
    color: #1976d2;
    text-decoration: none;
}

/* Responsive Design */
@media screen and (max-width: 600px) {
    body {
        padding: 10px;
    }

    h1 {
        font-size: 26px;
    }

    .container {
        width: 100%;
        padding: 15px;
        margin-top: 10vh;
    }

    input[type="number"]
    {
        font-size: 13px;
        padding: 7px;
    }

    button {
        font-size: 13px;
        padding: 7px;
    }
}