* {
    margin: 0pt;
    padding: 0pt;
}

body {		
    background-image: url("/index/bg.png");
    height: 1000px;
}

@font-face {

    font-family: 'Roboto';
    src: url("/index/fonts/Roboto.ttf");
}

li {
    font-family: 'Roboto';
    font-weight: bolder;
    font-size: 20px;
	margin-left: 100px;
    color: rgb(0, 0, 0);
    text-align: left;
}

a {
    color: rgb(0, 0, 0);
	text-decoration: none;
}

h1 {
    font-family: 'Roboto';
    font-weight: bolder;
    color: aliceblue;
    letter-spacing: 3px;
    text-transform: lowercase;
}

h1:hover {
    font-family: 'Roboto';
    font-weight: bolder;
    color: aliceblue;
    letter-spacing: 3px;
    text-transform: lowercase;
	font-size: 35px;
}


.banner {
    width: auto;
    height: 50px;
    background-color: blueviolet;
    text-align: center;
    padding-top: 10px;
}

img {
    width: 30px;
    height: 30px;
    display: inline-block;
    position: absolute;
}

.data {
    padding-top: 50px;
	padding-left: 40px;
    width: 250px;
    text-align: left;
}

.folder, .folder1, .folder2, .folder3 {
    padding-top: 7px;
    padding-left: 20px;
}

p {
    font-family: 'Roboto';
    padding-left: 40px;
	padding-top: 4px;
    font-size: 20px;
    font-weight: bolder;
}

p {
    font-family: 'Roboto';
    padding-left: 40px;
	padding-top: 4px;
    font-size: 20px;
    font-weight: bolder;
}
p:hover {	
    text-decoration: underline;
	text-decoration-thickness: 2px;
}





.btn-disabled {
            opacity: 0.6;
            cursor: not-allowed;
}




/* Стили для сообщений капчи */
.captcha-message {
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Стили для контейнера капчи */
.capcha {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

#myForm {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Индикатор загрузки */
.loader {
    display: none;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}