* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: black;
    color: #fff;
}

.video-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.register-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 15px;
}

.register-form {
    width: 100%;
    max-width: 420px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    border-radius: 18px;
    padding: 40px 25px;
    animation: glow 2.5s infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 10px rgba(212,175,55,0.3); }
    to { box-shadow: 0 0 25px rgba(212,175,55,0.8); }
}

.register-form h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #d4af37;
    letter-spacing: 1px;
}

.register-form input,
.register-form select {
    width: 100%;
    padding: 14px 15px;
    margin-bottom: 18px;
    background: rgba(0,0,0,0.6);
    border: 1px solid #d4af37;
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    outline: none;
}

.register-form select option {
    background: #000;
}

.btn-group {
    text-align: center;
    margin-top: 15px;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 30px;
    border: 1px solid #d4af37;
    color: #d4af37;
    text-decoration: none;
    background: rgba(0,0,0,0.6);
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: #d4af37;
    color: #000;
}

.back-btn {
    margin-top: 10px;
}

@media (max-width: 600px) {
    .register-form {
        padding: 30px 20px;
    }
}


.college-name {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    color: #d4af37;
    font-size: 25px;
    text-align: center;
    max-width: 90vw;
    line-height: 1.3;
    z-index: 5;
}

.college-logo-right {
    position: absolute;
    top: 6px;
    right: 50px;          
    width: 90px;
    z-index: 6;
}

.college-logo-left {
    position: absolute;
    top: 6px;
    left: 50px;          
    width: 90px;
    z-index: 6;
}

@media (max-width: 600px) {
    .three-dot {
        font-size: 24px;
        top: 15px;
        right: 12px;
    }

    .dot-menu {
        right: 12px;
    }

    .college-name {
        top: 4px;
        font-size: 16px;
    }

    .college-logo-left {
        top: 4px;
        left: 25px;
        width: 65px;
    }

    .college-logo-right {
        top: 4px;
        right: 25px;
        width: 65px;
    }
}