body{
    background-color: #dee9ff;
}

.registration-form{
	padding: 50px 0;
}

.registration-form form{
    background-color: #fff;
    max-width: 1000px;
    margin: auto;
    padding: 50px 70px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.075);
}

.registration-form .form-icon{
	text-align: center;
    background-color: #5891ff;
    border-radius: 50%;
    font-size: 40px;
    color: white;
    width: 100px;
    height: 100px;
    margin: auto;
    margin-bottom: 50px;
    line-height: 100px;
}
.registration-form .form-group{
    margin-bottom: 25px;
}
.registration-form .item{
	border-radius: 20px;
    padding: 10px 20px;
    height: 150px;
}

.registration-form .create-account{
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    background-color: #5791ff;
    border: none;
    color: white;
    margin: auto;
    width: 180px;
}

.registration-form .social-media{
    max-width: 1000px;
    background-color: #fff;
    margin: auto;
    padding: 35px 0;
    text-align: center;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    color: #9fadca;
    border-top: 1px solid #dee9ff;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.075);
}

.registration-form .social-icons{
    margin-top: 30px;
    margin-bottom: 16px;
}

.registration-form .social-icons a{
    font-size: 23px;
    margin: 0 3px;
    color: #5691ff;
    border: 1px solid;
    border-radius: 50%;
    width: 45px;
    display: inline-block;
    height: 45px;
    text-align: center;
    background-color: #fff;
    line-height: 45px;
}

.registration-form .social-icons a:hover{
    text-decoration: none;
    opacity: 0.6;
}

h1{text-align: center;}
p.lead{margin:0 0 18px;color:#4a5568;text-align: center;}
label {font-weight: bold; line-height: 30px;}
label small {font-size: 14px;}
.actions{margin-top:18px;display:flex;gap:10px;align-items:center}
.msg{padding:10px;border-radius:8px}
.success{background:#ecfdf5;color:#065f46;border:1px solid #bbf7d0}
.error{background:#fff5f5;color:#7f1d1d;border:1px solid #fecaca}
.small{font-size:13px;color:#64748b}
.inline-note{margin-left:auto;color:#64748b;font-size:13px}
.hint{font-weight:400;color:#64748b}

.char-count {
    font-size: 12px;
    margin-top: 4px;
    display: block;
    text-align: right;
    color: #6c757d;
}

@media (max-width: 576px) {
    .registration-form form{
        padding: 50px 20px;
        width: 95%;
    }
    .registration-form .social-media{ 
        width: 95%;
    }

    .registration-form .form-icon{
        width: 70px;
        height: 70px;
        font-size: 30px;
        line-height: 70px;
    }
}