/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #FAFAFA;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar */
nav div:first-child {
    background-color: #7c73e6;
    padding: 10px;
}

nav div:first-child h1 {
    font-weight: 700;
    font-size: 25px;
    letter-spacing: 1px;
    color: white;
    margin-left: 10px;
}

nav div:last-child {
    background-color: white;
    padding: 8px;
}

nav div:last-child svg {
    fill: #7c73e6;
    width: 30px;
    height: 28px;
    margin-left: 15px;
}

nav div:last-child a:last-child svg {
    margin-left: 25px;
}

/* Form container */
.form {
    background-color: white;
    width: 550px;
    padding: 20px 30px;
    margin: 40px auto;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 15px;
}

.form h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #7c73e6;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 30px;
}

/* Form elements */
.form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form form .input-text input,
.form form .input-text textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #7c73e6;
    outline: none;
    background-color: #FAFAFA;
    font-size: 20px;
    padding: 10px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form form .input-text textarea:focus {
    border-left: 1px solid #7c73e6;
    border-bottom: 1px solid #7c73e6;
}

/* Submit button */
.form form button {
    display: block;
    background-color: #7c73e6;
    border: 0;
    padding: 10px 15px;
    font-size: 20px;
    margin: auto;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    font-weight: 500;
    letter-spacing: 1.2px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
                rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.form form button:hover {
    background-color: #8c84e6; /* slightly lighter purple on hover */
}

/* Alerts */
.dangerAlert {
    width: 100%;
    background-color: #F8D7DA;
    text-align: center;
    padding: 5px;
    font-size: 25px;
    font-weight: 700;
    color: #7B1557;
    margin-bottom: 10px;
}

.successAlert {
    width: 100%;
    background-color: #7c73e6;
    text-align: center;
    padding: 5px;
    font-size: 25px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    nav div:first-child h1 {
        text-align: center;
    }
    nav div:last-child {
        display: flex;
        justify-content: center;
    }
    .form {
        width: 90%;
        padding: 20px;
    }
    .form form .input-text input,
    .form form .input-text textarea {
        font-size: 18px;
        padding: 8px;
    }
    .form form button {
        font-size: 18px;
        padding: 8px 12px;
    }
}
