@charset "utf-8";
/* CSS Document */

   
        .form-container {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); */
            width: 100%;
            max-width: 800px;
            margin: 100px auto;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
 
        .form-title2 {
            text-align: center;
            margin: 50px 0;
            color: #333;
            font-size: 25px;
            font-weight: 600;
			/*background: #475975;*/
            background: linear-gradient(45deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
 
        .form-group {
            margin-bottom: 25px;
        }
 
        .form-label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-weight: 500;
            font-size: 16px;
        }
 
        .form-input {
            width: 100%;
            padding: 5px;
            border: 2px solid #e1e5e9;
            border-radius: 12px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.9);
        }
 
        .form-input:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
            transform: translateY(-2px);
        }
 
        .birth-date-group {
            display: flex;
            gap: 15px;
        }
 
        .birth-date-group select {
            flex: 1;
            padding: 15px;
            border: 2px solid #e1e5e9;
            border-radius: 12px;
            font-size: 16px;
            background: rgba(255, 255, 255, 0.9);
            transition: all 0.3s ease;
        }
 
        .birth-date-group select:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
            transform: translateY(-2px);
        }
 
        .radio-group {
            display: flex;
            gap: 20px;
            margin-top: 10px;
        }
 
        .radio-option {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            padding: 10px 15px;
            border-radius: 10px;
            transition: all 0.3s ease;
            border: 2px solid #e1e5e9;
            background: rgba(255, 255, 255, 0.5);
		    font-size: 15px;
        }
 
        .radio-option:hover {
            background: rgba(102, 126, 234, 0.1);
            transform: translateY(-2px);
        }
 
        .radio-option input[type="radio"] {
            width: 18px;
            height: 18px;
            accent-color: #667eea;
        }
 
        .radio-option.selected {
            background: rgba(102, 126, 234, 0.2);
            border-color: #667eea;
        }
 
        .submit-btn {
            width: 100%;
            padding: 18px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
			margin-top: 20px;
        }
 
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        }
 
        .submit-btn:active {
            transform: translateY(-1px);
        }
 
        @media (max-width: 480px) {
            .form-container {
                padding: 55px 25px 80px;
            }
            .radio-group {
                flex-direction: column;
                gap: 10px;
            }
        }



.submit-btn{
	color: #fff!important;
}


input[type="date"] {
    width: 100%;
    padding: 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    box-sizing: border-box;
    font-size: 16px;
    min-width: 0;
    -webkit-appearance: none;
    appearance: none;
    text-align: left;
    background-color: #fff;
}

.entry-txt{
    margin: 30px 0;
    padding: 15px;
    font-size: 15px;
    border-radius: 12px;
    color: #555;
    border: 5px solid #e1e5e9;
    background: rgba(255, 255, 255, 0.5);
}

.entry-txt p{
    font-size: 17px;
    text-align: center;
    padding-bottom: 14px;
    font-weight: bold;
    line-height: 24px;
    border-bottom: solid 1px #555;
    margin-bottom: 16px;
    padding-top: 5px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}