﻿label {
    display: inline-block;
    margin-bottom: 0;
    color: #fff !important;
}

.password-strength-popup {
    position: absolute;
    top: 100%;
    left: 0;
    background: #f5f5f5;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    display: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    max-width: 200px;
    text-align: left;
    z-index: 1;
}

.password-strength-popup p {
    margin: 0;
    font-weight: bold;
}

.password-strength-popup ul {
    list-style: none;
    padding-left: 0;
}

.requirement {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

/* Icons and colors */
.requirement i {
    margin-right: 5px;
}

.requirement.success i {
    color: green;
}

.requirement.error i {
    color: red;
}

/* Text colors */
.requirement.success {
    color: green;
}

.requirement.error {
    color: red;
}

.eye-icon {
    position: absolute;
    top: 0; /* Center vertically */
    right: 42px; /* Adjust this value for the distance from the right edge */
    transform: translateY(-50%); /* Center vertically */
    cursor: pointer;
    border-radius: 5px;
}

/* Styles for the button */
.animated-button {
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Hover effect */
.animated-button:hover {
    background-color: darkred;
    transform: scale(1.05);
}

/* Click effect */
.animated-button:active {
    transform: scale(0.95);
}

@@media (max-width: 300px) { /* Adjust the breakpoint as needed */
    .animated-button {
        position: relative; /* Remove absolute positioning on smaller screens */
        margin-top: 10px; /* Add space above the button */
        width: auto; /* Allow the button to expand to fit content */
        height: auto; /* Allow the button to expand to fit content */
    }
}