﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    
    display: flex;
    justify-content: center;
    align-items: center;
}
.signup-container {
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 50px 30px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    max-width: 1400px;
    width: 100%;
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeIn 1.5s ease-in-out;
}
.Divcontainer {
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 50px 30px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.responsive-logo {
    max-width: 300px;
    width: 100%;
    display: block;
    margin: 0 auto;
}

.Divcontainer h2, .signup-container h2{
    text-align: center;
    color: #fff;
    margin-bottom: 1.5em;
}

.form-group {
    margin-bottom: 1.3rem
}

.input-group {
    position: relative;
}

    .input-group input {
        width: 100%;
        padding: 12px;
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 10px !important;
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        transition: 0.3s ease;
    }
 
        .input-group input:focus {
            border-color: #4facfe;
            box-shadow: 0 0 5px rgba(79, 172, 254, 0.5);
        }

    .input-group label {
        position: absolute;
        top: 12px;
        left: 10px;
        font-size: 14px;
        color: #ddd;
        transition: 0.3s ease;
        pointer-events: none;
    }

    .input-group input:focus + label,
    .input-group input:not(:placeholder-shown) + label {
        top: -17px;
        left: 5px;
        font-size: 12px;
        color: #ffa2a2;
    }

.btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, #ff1414, #ff8a8a);
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

    .btn:hover {
        background: linear-gradient(to right, #ff8a8a, #ff1414);
        box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
    }

.forgotpwrd {
    text-align: center;
    color: #d40d0d;
    text-decoration: none;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

    .modal.active {
        display: flex;
    }

.modal-content {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
}
.signup-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

    .signup-footer a {
        text-decoration: none;
    }

        .signup-footer a:hover {
            text-decoration: underline;
        }