﻿ 
:root {
    --primary-color: #4a6fa5;
    --success-color: #2e7d32;
    --warning-color: #ff9800;
    --error-color: #d32f2f;
    --light-bg: #f5f5f5;
    --dark-text: #333;
}

* {
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

 

.policy-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
   /* max-width: 600px;*/
    width: 100%;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.policy-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.policy-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

.policy-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0;
}

.policy-subtitle {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.policy-rules {
    list-style-type: none;
    padding: 0;
    margin: 25px 0;
}

.policy-rule {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.rule-icon {
    margin-right: 15px;
    font-size: 20px;
}

.rule-content {
    flex: 1;
}

.rule-title {
    font-weight: 600;
    margin-bottom: 3px;
}

.rule-description {
    font-size: 14px;
    color: #666;
}

.requirement-met {
    color: var(--success-color);
}

.requirement-not-met {
    color: var(--error-color);
}

.policy-footer {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
    text-align: center;
}

.password-field {
    position: relative;
    margin-bottom: 30px;
}

.password-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}

    .password-input:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.2);
    }

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #777;
}

.strength-meter {
    height: 5px;
    background-color: #eee;
    border-radius: 5px;
    margin-top: 10px;
    overflow: hidden;
}

.strength-fill {
    height: 100%;
    width: 0;
    transition: width 0.4s ease, background-color 0.4s ease;
}

.strength-text {
    font-size: 14px;
    margin-top: 5px;
    font-weight: 500;
}

 
