body {
    margin: 0;
    font-family: Arial, sans-serif;
    height: 100vh;
    background: url('../wallpaper/mainpage.png') no-repeat center center fixed;
    background-size: cover;
}

.form-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.6);
    padding: 30px;
    border-radius: 10px;
    color: white;
    text-align: center;
}

input {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #ff6600;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: #ff3300;
}

.main-btn {
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(45deg, #ff6600, #ff3300);
    color: white;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    margin: 10px;
}

.main-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    background: linear-gradient(45deg, #ff3300, #ff6600);
}

/* Title */
.main-title {
    font-family: 'Arial', sans-serif;   /* font style */
    font-size: 60px;                     /* size of the title */
    font-weight: bold;                   /* bold text */
    color: white;                        /* text color */
    text-align: center;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5); /* makes text stand out */
}

/* Subtitle */
.main-subtitle {
    font-family: 'Verdana', sans-serif;
    font-size: 24px;                     /* size of the subtitle */
    font-weight: normal;
    color: white;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
