    .background-image {
        position: fixed;
        top: 0;
        left: 0;
		margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
        opacity: 0.7; 
    }
    .form-input {
        width: 70%;
        padding: 7px 8px;
        border-radius: 5px;
        border: 1px solid rgba(45,133,233,1.00);
        background-color:rgba(187,208,242,1.00);
        box-sizing: border-box;
        font-size: 16px;
        color: #333;
        transition:0.3s ease;
    }

    .form-input:focus {
        border-color: rgba(22,100,220,1.00);
        box-shadow: 0 0 8px rgba(136,178,243,1.00);
        outline: none;
    }
    .submit-button, .reset-button {
        padding: 3px 15px;
        font-family: 'B Titr', sans-serif;
        color: white;
        border: 1px;
        cursor: pointer;
		text-align: center;
        font-weight: bold;
        transition: 0.3s ease, transform 0.2s ease;
        margin: 0 10px;
    }

    .reset-button {
        background-color: rgba(120,158,230,1.00); 
    }

    .reset-button:hover {
        background-color:rgba(21,68,158,1.00); 
        transform: translateY(-2px);
    }
