<style>

html, body {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1; /* this will push footer down */
}

.bdClass {
    /* Vibrant gradient background */
    background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
    min-height: 100vh;
    font-family: 'Segoe UI', sans-serif;
}

.container {
    background: rgba(255,255,255,0.93);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(31,38,135,0.14);
    padding: 38px 28px 30px 28px;
    margin-top: 170px;
}

h3 {
    color: #6236ff;
    font-weight: bold;
    text-shadow: 1px 2px 9px #ffffffb0;
    margin-bottom: 16px;
    //letter-spacing: 2px;
}

.form-control, .form-select {
    border-radius: 10px;
    border: 1.5px solid #c9bfff;
    /*margin-bottom: 16px;*/
	padding-right: 40px;
    box-shadow: 0 2px 8px #b89fff22;
}

.btn-success {
    background: linear-gradient(90deg, #4be1ec 0%, #000000 100%);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 3px 12px #a3baff44;
    transition: background 0.3s;
}

.btn-success:hover {
    background: linear-gradient(90deg, #6236ff 0%, #4be1ec 100%);
    color: #fff;
}

.alert-info {
    border-radius: 10px;
    background: linear-gradient(70deg, #ffe0c3 0%, #fcf8e3 100%);
    color: #5a3f00;
    font-weight: 500;
    margin-bottom: 22px;
}

footer {
	padding: 20px 0; 
	background: #f8f9fa; 
	text-align: center; 
	margin-top: 40px; 
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
    font-size: 18px;
}

.toggle-password:hover {
    color: #0d6efd;
}

</style>