﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}


.container {
    background: rgba(0, 0, 0, 0.8);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    width: 400px;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.logo img {
    width: 100px;
    margin-bottom: 20px;
}


.button-box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.toggle-btn {
    background: transparent;
    border: none;
    color: #ccc;
    font-size: 18px;
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
}

    .toggle-btn.active {
        color: cyan;
    }

    .toggle-btn::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: cyan;
        transform: scaleX(0);
        transition: transform 0.3s;
    }

    .toggle-btn.active::after {
        transform: scaleX(1);
    }


.form {
    display: flex;
    flex-direction: column;
}

.hidden {
    display: none;
}

h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 24px;
}

input {
    padding: 12px;
    margin: 15px 0;
    border: none;
    border-radius: 5px;
    background: #222;
    color: #fff;
    font-size: 16px;
    transition: box-shadow 0.3s;
}

    input:focus {
        outline: none;
        box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    }

.submit-btn {
    background: cyan;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
    color: #1a1a2e;
    font-weight: bold;
}

    .submit-btn:hover {
        background: #00d4ff;
        transform: translateY(-2px);
    }


.association-name {
    margin-top: 10px;
    color: #ccc;
}


footer {
    margin-top: 20px;
    font-size: 14px;
    color: #ccc;
}

    footer a {
        color: cyan;
        text-decoration: none;
        transition: 0.3s;
    }

        footer a:hover {
            color: #00d4ff;
        }

.footer-links {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
}

.forgot-password {
    margin-top: 10px;
    color: #ccc;
    cursor: pointer;
    transition: 0.3s;
}

    .forgot-password:hover {
        color: #00d4ff;
    }


.Role {
    height: 57px;
    border-radius: 5px;
    background: #222;
    color: #757575;
    font-size: 16px;
    border: none;
    padding: 12px;
    margin: 15px 0;
}