* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.app {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: url("../assets/profile-bg-d.png");
    background-position: center;
    min-height: 100vh;
}

.main-container-security {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: url("../assets/profile-bg-d.png");
    background-position: center;
    min-height: 100vh;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 425px;
    text-align: center;
}

.login-link {
    color: #fff;
    margin-top: 16px;
}

.logo {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-placeholder {
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
}

h1 {
    color: white;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.subtitle {
    color: white;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 30px;
}

.form-container {
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}



.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    color: white;
    font-size: 16px;
    margin-bottom: 10px;
    margin-left: 10px;
    font-weight: 400;
}

.input-wrapper {
    position: relative;
}

input {
    width: 100%;
    padding: 18px 20px;
    background: rgba(40, 60, 120, 0.6);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

input:focus {
    background: rgba(50, 70, 130, 0.7);
}

.eye-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
}

.signup-btn,
.login-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(90deg,#1b5bff,#c029ff);
    border: none;
    border-radius: 15px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 15px rgba(0, 153, 255, 0.4); */
}

.signup-btn:hover {
    background: #0088ee;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 153, 255, 0.5);
}

.signup-btn:active {
    transform: translateY(0);
}

.remember-me {
    display: flex;
    align-items: center;
    /* margin: 20px 0; */
    color: white;
    font-size: 14px;
    padding: 0 3px;
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    cursor: pointer;
}

.link-text {
    text-align: center;
    margin-top: 20px;
    color: white;
    font-size: 14px;
}

.link-text a {
    color: #0088ee;
    text-decoration: none;
    font-weight: bold;
}

.link-text a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    h1 {
        font-size: 28px;
    }

    .subtitle {
        font-size: 18px;
    }

    .form-container {
        padding: 30px 20px;
    }
}