@import url('https://fonts.googleapis.com/css2?family=Montserrat: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');


body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    background-image: linear-gradient(135deg, #FFF886 10%, #F072B6 100%);
    font-family: 'Montserrat', sans-serif;
}

h1 {
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bolder;
    font-size: 40px;
}

form {
    background-color: #fff;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

form div {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 10px;
}

form label {
    font-size: 20px;
    font-weight: 600;
    color: #DE4313;
}

form input {
    font-size: 16px;
    border: 2px solid #DE4313;
    border-radius: 5px;
    padding: 8px 10px;
}

button {
    font-family: 'Montserrat', sans-serif;
    display: block;
    width: 100%;
    padding: 10px;
    background-image: linear-gradient(135deg, #FEC163 10%, #DE4313 100%);
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-image: linear-gradient(135deg, #fec063c2 10%, #de4213da 100%);
}

/*
label {
    display: block;
    margin-bottom: 10px;
    color: #333;
    font-weight: bold;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}



button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    background-color: #4caf50;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}
*/