@import url('https://fonts.googleapis.com/css2?family=Poppins: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');

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
   
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
    
}
h2{
    color: #fedc00;
}

.body {
    display: flex;
    justify-content: end;
    align-items: center;
  
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

button {
    padding: 10px;
    background-color: #fedc00;
    color: #a12a97;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #f9e560;
}

.error-message {
    color: red;
    margin-bottom: 10px;
    display: none;
}

.success-message {
    color: #fedc00;
    margin-bottom: 10px;
    display: none;
}

.loading {
    cursor: not-allowed;
    opacity: 0.7;
}

.back-link {
    text-align: center;
    margin-top: 20px;
}

.back-link a {
    color: #fedc00;
    text-decoration: none;
}

.back-link a:hover {
    text-decoration: underline;
}