﻿body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
//    background: linear-gradient(135deg, #dbbc34, #8e44ad);
    background: linear-gradient(135deg, #91e978, #1379bd);
}

.loader {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 400px;
    width: 100%;
/*    animation: fadeInUp 1.5s ease-out;*/
}

    .card i {
        font-size: 3em;
        color: #64f710;
    }

    .card p {
        margin: 10px 0;
    }

input {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    font-size: 16px;
    padding: 6px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

/*button {
    background-color: #ff0000;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}*/

    button:hover {
        background-color: #00fff2;
    }

#error-message {
    color: #e74c3c;
    margin-top: 10px;
}

input[type="file"] {
    display: none;
}

.custom-file-upload {
    background-color: #1379bd;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    margin-top: 10px;
    /*border: 1px solid #808080;
    display: inline-block;
    padding: 10px;
    margin-bottom: 10px;
    cursor: pointer;*/
}
