@import url('https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Prompt", "Serif";
}

main {
    width: 100vw;
    height: 100vh;
    display: flex;
    padding-top: 100px;
    flex-direction: column;
    align-items: center;
    background-color: #DEDEDE;

    & h1 {
        margin-bottom: 1rem;
        font-weight: 500;
    }
}

main .container {
    width: 400px;
    height: auto;
    padding: 1rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 4px 0 #00002f91;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container h2 {
    font-size: 26px;
    font-weight: 400;
}

.container p {
    color: #C1C1C1;
    font-size: 16px;
    margin-bottom: 2rem;
}

.container form {
    width: 320px;
}

.container form input {
    border: none;
    width: calc(100% - 10px);
    font-family: "Prompt", "serif";
    background-color: #F2F2F2;
    height: 40px;
    border-radius: 5px;
    padding-left: 10px;
    margin: 0;
}

.container form button {
    width: 100%;
    height: 40px;
    text-align: center;
    border: none;
    outline: none;
    font-family: "Prompt", "serif";
    background-color: #BB0FCB;
    color: white;
    border-radius: 5px;
}

.container a {
    margin-top: 2rem;
    color: #329BE5;
    text-decoration: none;
    margin-bottom: 1rem;
}

/* Mobile เล็กมาก */
@media (max-width: 480px) {
    main {
        background-color: white;
    }
    main .container {
        width: 100%;
        box-shadow: none;
    }
}

